Skip to content
Permalink
901a4ce35d
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
141 lines (92 sloc) 3.56 KB
/* eslint-disable max-len */
'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: true, slowMo: delayMS, args: [`--window-size=${width},${height}`, '--no-sandbox'] })
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')
const image = await page.screenshot()
expect(image).toMatchImageSnapshot()
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')
const image = await page.screenshot()
expect(image).toMatchImageSnapshot()
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')
const image = await page.screenshot()
expect(image).toMatchImageSnapshot()
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')
const image = await page.screenshot()
expect(image).toMatchImageSnapshot()
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')
const image = await page.screenshot()
expect(image).toMatchImageSnapshot()
done()
})
})