* Apps bindings support (#5012) * Add redux related information * Add binding loading on channel refresh * Add channel header and post option bindings * Fix test * Minor fixes * Fix snapshots * Handle errors and show bindings only on main channel * Update Expand Levels keys and values to match latest changes * Add NAVIGATE call response handling. * Add more isolation to apps related code * Add defaults to send ephemeral * Update variable naming * Rename shouldProcessApps by a more meaningful appsEnabled * Embedded forms (#5169) * Add redux related information * Add binding loading on channel refresh * Add channel header and post option bindings * Fix test * Minor fixes * Fix snapshots * Handle errors and show bindings only on main channel * Update Expand Levels keys and values to match latest changes * Add NAVIGATE call response handling. * Add more isolation to apps related code * Add Embedded Forms * Fix snapshots * Add Embedded Forms * Improve naming, change the root element to be a binding and improve binding handling * Get post down on the buttons, remove unneeded variables and minor fixes from the review * Allow undefined bindings to fillBindingsInformation and add logging for error. * Address review feedback * Add App Forms (#5177) * Add App Forms * Address feedback and self review * Add dynamic select * Fixes and improvements * Add the ability to refresh on submit. * Use AppFormValue instead of redoing the type * Address feedback * [MM-31508] Rename URL to Path in Call (#5186) * Add user agent to call context (#5193) * Remove unneeded state reference (#5196) * Change user agent query on fetch bindings (#5201) * Add refresh websocket event to refetch bindings (#5194) * Add refresh websocket event to refetch bindings * Add missing changes * Declare socket event constant and separate the handler to a different function * Add binding validation on binding fetch (#5200) * Apps commands (#5107) * Add redux related information * Add binding loading on channel refresh * Add channel header and post option bindings * Fix test * Minor fixes * Fix snapshots * apps modals draft * Handle errors and show bindings only on main channel * Update Expand Levels keys and values to match latest changes * Add NAVIGATE call response handling. * Add more isolation to apps related code * reuse command parser throughout slash_suggestion component's lifecycle * fix prop and lint * using alert to show error message. need another way * duplicate import * types * types * types * rename file * copy webapp parser and test * dependencies moved. tests pass * move app command parser into its own folder * converted to typescript, all tests are passing * automated and manual tests work * lint * lint * remove fall throughs with blocks * types * doAppCall type * extract displayError to deps file * test types * lint * fix tests * unused import * PR feedback * fix imports and show errors * types * remove execute suggestion for mobile * watch feature flag * fix tests * change form text arugment behavior to show user input and not hint * return call response error in doAppCall * update tests to remove hint from text field suggestions * lint * use new base command structure * fix tests * wrap appsEnabled * typescript actions/command.ts * update app constants * PR feedback * fix error handling from doAppCall action * Use App CallRequest structure (#5212) * error handling * move test files * remove unused import Co-authored-by: Daniel Espino García <larkox@gmail.com> * Add feature flag (#5207) * Add feature flag * Simplify return * Add localization, call validation and use call type on subpath (#5221) * Add localization, call validation and use call type on subpath * Add more localization to the parser and bring fixes from webapp * Fix ephemerals and channel header / post options crashes * fix app command parser deps and alert messages * Improve suggestion handling * Fix test * Fix lint * Return errors as error * Address PR feedback * return error property * fix error string wordings Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com> * migrate app selector to AutocompleteSelector * add if statement to avoid missing prop * add tests for dynamic values * clean up * remove old files Co-authored-by: Daniel Espino García <larkox@gmail.com> Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
180 lines
5 KiB
JavaScript
180 lines
5 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
import React from 'react';
|
|
import {shallow} from 'enzyme';
|
|
import {IntlProvider} from 'react-intl';
|
|
|
|
import Preferences from '@mm-redux/constants/preferences';
|
|
|
|
import SelectorScreen from './selector_screen.js';
|
|
|
|
const user1 = {id: 'id', username: 'username'};
|
|
const user2 = {id: 'id2', username: 'username2'};
|
|
|
|
const getProfiles = async () => {
|
|
return {
|
|
data: [user1, user2],
|
|
error: {},
|
|
};
|
|
};
|
|
|
|
const searchProfiles = async () => {
|
|
return {
|
|
data: [user2],
|
|
error: {},
|
|
};
|
|
};
|
|
|
|
const channel1 = {id: 'id', name: 'name', display_name: 'display_name'};
|
|
const channel2 = {id: 'id2', name: 'name2', display_name: 'display_name2'};
|
|
|
|
const getChannels = async () => {
|
|
return {
|
|
data: [channel1, channel2],
|
|
error: {},
|
|
};
|
|
};
|
|
|
|
const searchChannels = async () => {
|
|
return {
|
|
data: [channel2],
|
|
error: {},
|
|
};
|
|
};
|
|
|
|
const intlProvider = new IntlProvider({locale: 'en'}, {});
|
|
const {intl} = intlProvider.getChildContext();
|
|
|
|
describe('SelectorScreen', () => {
|
|
const actions = {
|
|
getProfiles,
|
|
getChannels,
|
|
searchProfiles,
|
|
searchChannels,
|
|
};
|
|
|
|
const baseProps = {
|
|
actions,
|
|
currentTeamId: 'someId',
|
|
onSelect: jest.fn(),
|
|
data: [{text: 'text', value: 'value'}],
|
|
dataSource: null,
|
|
theme: Preferences.THEMES.default,
|
|
};
|
|
|
|
beforeAll(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
test('should match snapshot for explicit options', async () => {
|
|
const wrapper = shallow(
|
|
<SelectorScreen {...baseProps}/>,
|
|
{context: {intl}},
|
|
);
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
|
|
test('should match snapshot for users', async () => {
|
|
const props = {
|
|
...baseProps,
|
|
dataSource: 'users',
|
|
data: [user1, user2],
|
|
};
|
|
|
|
const wrapper = shallow(
|
|
<SelectorScreen {...props}/>,
|
|
{context: {intl}},
|
|
);
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
wrapper.setState({isLoading: false});
|
|
wrapper.update();
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
|
|
test('should match snapshot for channels', async () => {
|
|
const props = {
|
|
...baseProps,
|
|
dataSource: 'channels',
|
|
data: [channel1, channel2],
|
|
};
|
|
|
|
const wrapper = shallow(
|
|
<SelectorScreen {...props}/>,
|
|
{context: {intl}},
|
|
);
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
wrapper.setState({isLoading: false});
|
|
wrapper.update();
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
|
|
test('should match snapshot for searching', async () => {
|
|
const props = {
|
|
...baseProps,
|
|
dataSource: 'channels',
|
|
data: [channel1, channel2],
|
|
};
|
|
|
|
const wrapper = shallow(
|
|
<SelectorScreen {...props}/>,
|
|
{context: {intl}},
|
|
);
|
|
wrapper.setState({isLoading: false, searching: true, term: 'name2'});
|
|
wrapper.update();
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
|
|
test('should call getDynamicOptions if data source is dynamic', async () => {
|
|
const getDynamicOptions = jest.fn(async (term) => {
|
|
if (term) {
|
|
return {data: [{text: 'With Query Text', value: 'with_query'}]};
|
|
}
|
|
|
|
return {data: [{text: 'Without Query Text', value: 'without_query'}]};
|
|
});
|
|
|
|
const props = {
|
|
...baseProps,
|
|
dataSource: 'dynamic',
|
|
getDynamicOptions,
|
|
};
|
|
|
|
const wrapper = shallow(
|
|
<SelectorScreen {...props}/>,
|
|
{context: {intl}},
|
|
);
|
|
|
|
jest.runAllTimers();
|
|
await (() => new Promise(setImmediate))();
|
|
|
|
expect(props.getDynamicOptions).toHaveBeenCalledWith('');
|
|
expect(wrapper.state().data).toEqual([
|
|
{text: 'Without Query Text', value: 'without_query'},
|
|
]);
|
|
expect(wrapper.state().searchResults).toEqual([]);
|
|
|
|
let customList = wrapper.find('CustomList');
|
|
expect(customList.props().data).toEqual([
|
|
{text: 'Without Query Text', value: 'without_query'},
|
|
]);
|
|
|
|
// Search for value
|
|
wrapper.instance().onSearch('mysearch');
|
|
|
|
jest.runAllTimers();
|
|
await (() => new Promise(setImmediate))();
|
|
|
|
expect(props.getDynamicOptions).toHaveBeenCalledWith('mysearch');
|
|
expect(wrapper.state().data).toEqual([
|
|
{text: 'Without Query Text', value: 'without_query'},
|
|
]);
|
|
expect(wrapper.state().searchResults).toEqual([
|
|
{text: 'With Query Text', value: 'with_query'},
|
|
]);
|
|
|
|
customList = wrapper.find('CustomList');
|
|
expect(customList.props().data).toEqual([
|
|
{text: 'With Query Text', value: 'with_query'},
|
|
]);
|
|
});
|
|
});
|