Migrate add and edit incoming webhook components to redux (#6885)

* Migrate add incoming webhook components to redux

* Migrate edit incoming webhook components to redux

* Add tests
Этот коммит содержится в:
Carlos Tadeu Panato Junior
2017-07-27 10:16:16 +02:00
коммит произвёл George Goldberg
родитель ff0a790516
Коммит 3043b5d52a
13 изменённых файлов: 386 добавлений и 153 удалений

Просмотреть файл

@@ -0,0 +1,26 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`components/integrations/AddIncomingWebhook should match snapshot 1`] = `
<AbstractIncomingWebhook
action={[Function]}
footer={
Object {
"defaultMessage": "Save",
"id": "add_incoming_webhook.save",
}
}
header={
Object {
"defaultMessage": "Add",
"id": "integrations.add",
}
}
serverError=""
team={
Object {
"id": "testteamid",
"name": "test",
}
}
/>
`;

Просмотреть файл

@@ -0,0 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`components/integrations/EditIncomingWebhook should match snapshot 1`] = `
<LoadingScreen
position="relative"
/>
`;

Просмотреть файл

@@ -0,0 +1,29 @@
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import {shallow} from 'enzyme';
import AddIncomingWebhook from 'components/integrations/components/add_incoming_webhook/add_incoming_webhook.jsx';
describe('components/integrations/AddIncomingWebhook', () => {
test('should match snapshot', () => {
function emptyFunction() {} //eslint-disable-line no-empty-function
const teamId = 'testteamid';
const wrapper = shallow(
<AddIncomingWebhook
team={{
id: teamId,
name: 'test'
}}
createIncomingHookRequest={{
status: 'not_started',
error: null
}}
actions={{createIncomingHook: emptyFunction}}
/>
);
expect(wrapper).toMatchSnapshot();
});
});

Просмотреть файл

@@ -0,0 +1,30 @@
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import {shallow} from 'enzyme';
import EditIncomingWebhook from 'components/integrations/components/edit_incoming_webhook/edit_incoming_webhook.jsx';
describe('components/integrations/EditIncomingWebhook', () => {
test('should match snapshot', () => {
function emptyFunction() {} //eslint-disable-line no-empty-function
const teamId = 'testteamid';
const wrapper = shallow(
<EditIncomingWebhook
team={{
id: teamId,
name: 'test'
}}
hookId={'somehookid'}
updateIncomingHookRequest={{
status: 'not_started',
error: null
}}
actions={{updateIncomingHook: emptyFunction, getIncomingHook: emptyFunction}}
/>
);
expect(wrapper).toMatchSnapshot();
});
});