nexxtway/react-rainbow

View on GitHub
src/components/RadioGroup/__test__/radioGroup.spec.js

Summary

Maintainability
D
2 days
Test Coverage

Similar blocks of code found in 4 locations. Consider refactoring.
Open

    it('renders correctly in vertical orientation (explicit)', () => {
        const options = [{ value: 'admin', label: 'Admin' }, { value: 'user', label: 'User' }];

        const component = mount(<RadioGroup options={options} orientation="vertical" />);
        const elem = component.find(RadioGroupStyledContentContainer);
Severity: Major
Found in src/components/RadioGroup/__test__/radioGroup.spec.js and 3 other locations - About 4 hrs to fix
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 35..44
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 46..53
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 30..37

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 123.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

    it('renders correctly in horizontal orientation (explicit)', () => {
        const options = [{ value: 'admin', label: 'Admin' }, { value: 'user', label: 'User' }];

        const component = mount(<RadioGroup options={options} orientation="horizontal" />);
        const elem = component.find(RadioGroupStyledContentContainer);
Severity: Major
Found in src/components/RadioGroup/__test__/radioGroup.spec.js and 3 other locations - About 4 hrs to fix
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 35..44
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 46..53
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 19..28

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 123.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    it('renders correctly in vertical orientation (default)', () => {
        const options = [{ value: 'admin', label: 'Admin' }, { value: 'user', label: 'User' }];

        const component = mount(<RadioGroup options={options} />);
        const elem = component.find(RadioGroupStyledContentContainer);
Severity: Major
Found in src/components/RadioGroup/__test__/radioGroup.spec.js and 1 other location - About 4 hrs to fix
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 24..33

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 118.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 10 locations. Consider refactoring.
Open

    it('should set "left" to labelAlignment prop passed in the Label component', () => {
        const component = mount(<RadioGroup label="RadioGroup Label" labelAlignment="left" />);
        expect(component.find(StyledLabel).prop('labelAlignment')).toBe('left');
    });
Severity: Major
Found in src/components/RadioGroup/__test__/radioGroup.spec.js and 9 other locations - About 1 hr to fix
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 60..65
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 67..72
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 64..69
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 70..75
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 49..52
src/components/Rating/__test__/rating.spec.js on lines 24..27
src/components/Rating/__test__/rating.spec.js on lines 28..31
src/components/Slider/__test__/slider.spec.js on lines 38..41
src/components/Slider/__test__/slider.spec.js on lines 42..45

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 71.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 10 locations. Consider refactoring.
Open

    it('should set "right" to labelAlignment prop passed in the Label component', () => {
        const component = mount(<RadioGroup label="RadioGroup Label" labelAlignment="right" />);
        expect(component.find(StyledLabel).prop('labelAlignment')).toBe('right');
    });
Severity: Major
Found in src/components/RadioGroup/__test__/radioGroup.spec.js and 9 other locations - About 1 hr to fix
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 60..65
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 67..72
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 64..69
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 70..75
src/components/RadioGroup/__test__/radioGroup.spec.js on lines 44..47
src/components/Rating/__test__/rating.spec.js on lines 24..27
src/components/Rating/__test__/rating.spec.js on lines 28..31
src/components/Slider/__test__/slider.spec.js on lines 38..41
src/components/Slider/__test__/slider.spec.js on lines 42..45

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 71.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 8 locations. Consider refactoring.
Open

    it('should set "left" to labelAlignment if prop not passed in the Label component', () => {
        const component = mount(<RadioGroup label="RadioGroup Label" />);
        expect(component.find(StyledLabel).prop('labelAlignment')).toBe('left');
    });
Severity: Major
Found in src/components/RadioGroup/__test__/radioGroup.spec.js and 7 other locations - About 1 hr to fix
src/components/Card/__test__/card.spec.js on lines 40..43
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 74..77
src/components/MenuItem/__test__/menuItem.spec.js on lines 12..15
src/components/Notification/__test__/notification.spec.js on lines 15..18
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 76..79
src/components/Rating/__test__/rating.spec.js on lines 32..35
src/components/Slider/__test__/slider.spec.js on lines 46..49

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 17 locations. Consider refactoring.
Open

    it('should render a label when label prop is passed', () => {
        const component = mount(<RadioGroup label="RadioGroup Label" />);
        expect(component.find(StyledLabel).exists()).toBe(true);
    });
Severity: Major
Found in src/components/RadioGroup/__test__/radioGroup.spec.js and 16 other locations - About 1 hr to fix
src/components/ButtonGroupPicker/__test__/buttonGroupPicker.spec.js on lines 47..50
src/components/ButtonIcon/__test__/buttonIcon.spec.js on lines 65..68
src/components/CheckboxGroup/__test__/checkboxGroup.spec.js on lines 55..58
src/components/CodeInput/__test__/codeInput.spec.js on lines 39..42
src/components/CodeInput/__test__/codeInput.spec.js on lines 47..50
src/components/FileSelector/__test__/fileSelector.spec.js on lines 57..60
src/components/Input/pickerInput/__test__/input.spec.js on lines 82..85
src/components/MultiSelect/__test__/multiSelect.spec.js on lines 12..15
src/components/MultiSelect/__test__/multiSelect.spec.js on lines 17..20
src/components/MultiSelect/__test__/multiSelect.spec.js on lines 22..25
src/components/MultiSelect/__test__/multiSelect.spec.js on lines 27..30
src/components/Option/__test__/option.spec.js on lines 131..134
src/components/RadioButtonGroup/__test__/radioButtonGroup.spec.js on lines 60..63
src/components/Rating/__test__/rating.spec.js on lines 20..23
src/components/Slider/__test__/slider.spec.js on lines 34..37
src/components/WeekDayPicker/__test__/weekDayPicker.spec.js on lines 51..54

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 65.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

There are no issues that match your filters.

Category
Status