joyent-portal/packages/my-joy-beta/src/components/__tests__/firewall.spec.js

215 lines
4.2 KiB
JavaScript

import React, { Fragment } from 'react';
import renderer from 'react-test-renderer';
import 'jest-styled-components';
import {
Rules,
TagRules,
DefaultRules,
ToggleFirewallForm,
ToggleInactiveForm
} from '../firewall';
import Theme from '@mocks/theme';
const rules = [
{
id: '3473327e-6d0c-4747-97c5-ced1260a7e42',
enabled: true,
rule_str: 'FROM any TO all vms ALLOW icmp TYPE 8 CODE 0',
rule_obj: {
from: [['wildcard', 'any']],
to: [['wildcard', 'vmall']],
action: 'allow',
protocol: {
name: 'icmp',
targets: ['8:0']
},
isWildcard: true,
tags: []
},
global: true,
description: null
},
{
id: '24d55d2f-12ba-4935-9de9-ac305b8a40a5',
enabled: true,
rule_str: 'FROM any TO all vms ALLOW icmp6 TYPE all',
rule_obj: {
from: [['wildcard', 'any']],
to: [['wildcard', 'vmall']],
action: 'allow',
protocol: {
name: 'icmp6',
targets: ['all']
},
isWildcard: true,
tags: []
},
global: true,
description: 'allow all ICMPv6 types'
},
{
id: '4bd8b2e2-981b-474b-9b8b-0b53fecb4b71',
enabled: false,
rule_str: 'FROM all vms TO all vms ALLOW tcp PORT all',
rule_obj: {
from: [['wildcard', 'vmall']],
to: [['wildcard', 'vmall']],
action: 'allow',
protocol: {
name: 'tcp',
targets: ['all']
},
isWildcard: true,
tags: []
},
global: null,
description: null
},
{
id: 'af549024-b3b1-43bf-8a66-49c2b2dc5640',
enabled: false,
rule_str: 'FROM all vms TO all vms ALLOW tcp PORT all',
rule_obj: {
from: [['wildcard', 'vmall']],
to: [['wildcard', 'vmall']],
action: 'allow',
protocol: {
name: 'tcp',
targets: ['all']
},
isWildcard: true,
tags: []
},
global: null,
description: null
},
{
id: '9e5a152a-582b-4525-909e-f9c55deb7f03',
enabled: false,
rule_str: 'FROM any TO tag "wat" ALLOW tcp PORT all',
rule_obj: {
from: [['wildcard', 'any']],
to: [['tag', 'wat']],
action: 'allow',
protocol: {
name: 'tcp',
targets: ['all']
},
isWildcard: false,
tags: ['wat']
},
global: null,
description: null
}
];
it('renders <Rules/> without throwing', () => {
expect(
renderer
.create(
<Theme>
<Rules />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});
it('renders <Rules rules /> without throwing', () => {
expect(
renderer
.create(
<Theme>
<Rules rules={rules} />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});
it('renders <DefaultRules /> without throwing', () => {
expect(
renderer
.create(
<Theme>
<DefaultRules />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});
it('renders <DefaultRules rules /> without throwing', () => {
expect(
renderer
.create(
<Theme>
<DefaultRules rules={rules} />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});
it('renders <TagRules /> without throwing', () => {
expect(
renderer
.create(
<Theme>
<TagRules />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});
it('renders <TagRules rules /> without throwing', () => {
expect(
renderer
.create(
<Theme>
<TagRules rules={rules} />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});
it('renders <ToggleFirewallForm /> without throwing', () => {
expect(
renderer
.create(
<Theme>
<ToggleFirewallForm />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});
it('renders <ToggleFirewallForm submitting /> without throwing', () => {
expect(
renderer
.create(
<Theme>
<ToggleFirewallForm submitting />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});
it('renders <ToggleInactiveForm /> without throwing', () => {
expect(
renderer
.create(
<Theme>
<ToggleInactiveForm />
</Theme>
)
.toJSON()
).toMatchSnapshot();
});