You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
const BASE_URL = `http://localhost:${process.env.PORT || 8000}`;
|
|
|
|
describe('Login', () => {
|
|
beforeAll(async () => {
|
|
jest.setTimeout(1000000);
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await page.goto(`${BASE_URL}/user/login`, { waitUntil: 'networkidle2' });
|
|
await page.evaluate(() => window.localStorage.setItem('antd-pro-authority', 'guest'));
|
|
});
|
|
|
|
it('should login with failure', async () => {
|
|
await page.waitForSelector('#userName', {
|
|
timeout: 2000,
|
|
});
|
|
await page.type('#userName', 'mockuser');
|
|
await page.type('#password', 'wrong_password');
|
|
await page.click('button[type="submit"]');
|
|
await page.waitForSelector('.ant-alert-error'); // should display error
|
|
});
|
|
|
|
it('should login successfully', async () => {
|
|
await page.waitForSelector('#userName', {
|
|
timeout: 2000,
|
|
});
|
|
await page.type('#userName', 'admin');
|
|
await page.type('#password', 'ant.design');
|
|
await page.click('button[type="submit"]');
|
|
await page.waitForSelector('.ant-layout-sider h1'); // should display error
|
|
const text = await page.evaluate(() => document.body.innerHTML);
|
|
expect(text).toContain('<h1>Ant Design Pro</h1>');
|
|
});
|
|
});
|
|
|