initial import for Open Source 🎉
This commit is contained in:
parent
1898c361f3
commit
9c0dd3b722
2048 changed files with 218743 additions and 0 deletions
49
integration_tests/tests/quay-login.scenario.ts
Normal file
49
integration_tests/tests/quay-login.scenario.ts
Normal file
|
@ -0,0 +1,49 @@
|
|||
//import { $, browser, ExpectedConditions as until } from 'protractor';
|
||||
import { $, browser } from 'protractor';
|
||||
|
||||
import { appHost } from '../protractor.conf';
|
||||
import * as loginView from '../views/quay-login.view';
|
||||
//import * as sidenavView from '../views/sidenav.view';
|
||||
//import * as clusterSettingsView from '../views/cluster-settings.view';
|
||||
|
||||
const JASMINE_DEFAULT_TIMEOUT_INTERVAL = jasmine.DEFAULT_TIMEOUT_INTERVAL;
|
||||
const JASMINE_EXTENDED_TIMEOUT_INTERVAL = 1000 * 60 * 3;
|
||||
//const KUBEADMIN_IDP = 'kube:admin';
|
||||
//const KUBEADMIN_USERNAME = 'kubeadmin';
|
||||
const {
|
||||
// BRIDGE_HTPASSWD_IDP = 'test',
|
||||
QUAY_INTERNAL_USERNAME = 'test',
|
||||
QUAY_INTERNAL_PASSWORD = 'test',
|
||||
// BRIDGE_KUBEADMIN_PASSWORD,
|
||||
} = process.env;
|
||||
|
||||
describe('Auth test', () => {
|
||||
beforeAll(async() => {
|
||||
await browser.get(appHost);
|
||||
await browser.sleep(3000); // Wait long enough for the login redirect to complete
|
||||
});
|
||||
|
||||
describe('Login test', async() => {
|
||||
beforeAll(() => {
|
||||
// Extend the default jasmine timeout interval just in case it takes a while for the htpasswd idp to be ready
|
||||
jasmine.DEFAULT_TIMEOUT_INTERVAL = JASMINE_EXTENDED_TIMEOUT_INTERVAL;
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
// Set jasmine timeout interval back to the original value after these tests are done
|
||||
jasmine.DEFAULT_TIMEOUT_INTERVAL = JASMINE_DEFAULT_TIMEOUT_INTERVAL;
|
||||
});
|
||||
|
||||
it('logs in', async() => {
|
||||
await loginView.login(QUAY_INTERNAL_USERNAME, QUAY_INTERNAL_PASSWORD);
|
||||
expect(browser.getCurrentUrl()).toContain(appHost);
|
||||
expect(loginView.userDropdown.getText()).toContain(QUAY_INTERNAL_USERNAME);
|
||||
});
|
||||
|
||||
it('logs out', async() => {
|
||||
await loginView.logout();
|
||||
expect(browser.getCurrentUrl()).toContain('repository');
|
||||
expect($('.user-view').isPresent()).toBeTruthy();
|
||||
});
|
||||
});
|
||||
});
|
Reference in a new issue