Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TESTS] Add E2E tests to directory #2964

Merged
merged 4 commits into from
Mar 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/views/DirectoryView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ class DirectoryView extends React.Component {
<SearchBox
onChangeText={this.onSearchChangeText}
onSubmitEditing={this.search}
testID='federation-view-search'
testID='directory-view-search'
/>
<Touch
onPress={this.toggleDropdown}
style={styles.dropdownItemButton}
testID='federation-view-create-channel'
testID='directory-view-dropdown'
theme={theme}
>
<View style={[sharedStyles.separatorVertical, styles.toggleDropdownContainer, { borderColor: themes[theme].separatorColor }]}>
Expand Down Expand Up @@ -199,7 +199,7 @@ class DirectoryView extends React.Component {
title: item.name,
onPress: () => this.onPressItem(item),
baseUrl,
testID: `federation-view-item-${ item.name }`,
testID: `directory-view-item-${ item.name }`.toLowerCase(),
style,
user,
theme,
Expand Down
47 changes: 47 additions & 0 deletions e2e/tests/assorted/09-joinfromdirectory.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
const {
device, expect, element, by, waitFor
} = require('detox');
const data = require('../../data');
const { navigateToLogin, login, tapBack, sleep } = require('../../helpers/app');

const testuser = data.users.regular

async function navigateToRoom(search) {
await element(by.id('directory-view-search')).replaceText(search);
await waitFor(element(by.id(`directory-view-item-${ search }`))).toBeVisible().withTimeout(10000);
await sleep(300); // app takes some time to animate
await element(by.id(`directory-view-item-${ search }`)).tap();
await waitFor(element(by.id('room-view'))).toExist().withTimeout(5000);
await waitFor(element(by.id(`room-view-title-${ search }`))).toExist().withTimeout(5000);
}

describe('Join room from directory', () => {
before(async() => {
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
await navigateToLogin();
await login(testuser.username, testuser.password);
});

describe('Usage', async() => {
it('should tap directory', async() => {
await element(by.id('rooms-list-view-directory')).tap();
await waitFor(element(by.id('directory-view'))).toExist().withTimeout(2000);
})

it('should search public channel and navigate', async() => {
await navigateToRoom(data.channels.detoxpublic.name);
})

it('should back and tap directory', async() => {
await tapBack();
await element(by.id('rooms-list-view-directory')).tap();
})

it('should search user and navigate', async() => {
await element(by.id('directory-view-dropdown')).tap();
await element(by.label('Users')).tap();
await element(by.label('Search by')).tap();
await navigateToRoom(data.users.alternate.username);
})
});
});