Skip to content
Permalink
7b00c58f45
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
120 lines (81 sloc) 3.12 KB
'use strict'
const puppeteer = require('puppeteer')
const { configureToMatchImageSnapshot } = require('jest-image-snapshot')
const width = 800
const height = 600
const delayMS = 0
const shell = require('shelljs')
let browser
let page
// threshold is the difference in pixels before the snapshots dont match
const toMatchImageSnapshot = configureToMatchImageSnapshot({
customDiffConfig: { threshold: 2 },
noColors: true,
})
expect.extend({ toMatchImageSnapshot })
beforeAll( async() => {
browser = await puppeteer.launch({ headless: false, slowMo: delayMS, args: [`--window-size=${width},${height}`] })
page = await browser.newPage()
await page.setViewport({ width, height })
})
beforeEach( () => shell.exec('./abolishDB.sh'))
afterAll( () => browser.close() )
describe('login test cases', () => {
test('No Username', async done => {
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.type('input[name=pass]', 'bread')
await page.click('input[type=submit]')
const title = await page.title()
expect(title).toBe('ERROR')
done()
})
test('No password', async done => {
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.type('input[name=user]', 'bread')
await page.click('input[type=submit]')
const title = await page.title()
expect(title).toBe('ERROR')
done()
})
})
describe('register', () => {
test('No Username register', async done => {
shell.exec('abolishDB.sh')
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.click('[href="/register"]')
await page.type('input[name=pass]', 'bread')
await page.click('input[type=submit]')
const title = await page.title()
expect(title).toBe('ERROR')
done()
})
test('No Password register', async done => {
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.click('[href="/register"]')
await page.type('input[name=user]', 'bread')
await page.click('input[type=submit]')
const title = await page.title()
expect(title).toBe('ERROR')
done()
})
test('Successful register', async done => {
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.goto('http://localhost:8080/login', { timeout: 30000, waitUntil: 'load' })
await page.click('[href="/register"]')
await page.type('input[name=user]', 'Craig')
await page.type('input[name=pass]', 'bread')
await page.click('input[type=submit]')
let title = await page.title()
expect(title).toBe('Log In')
await page.type('input[name=user]', 'Craig')
await page.type('input[name=pass]', 'bread')
await page.click('input[type=submit]')
title = await page.title()
expect(title).toBe('Main Menu')
done()
})
})