mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
213 lines
5.4 KiB
JavaScript
213 lines
5.4 KiB
JavaScript
import test from 'ava'
|
|
import { resolve } from 'path'
|
|
import { Nuxt, Builder } from '..'
|
|
import * as browser from './helpers/browser'
|
|
import { interceptLog } from './helpers/console'
|
|
|
|
const port = 4003
|
|
const url = (route) => 'http://localhost:' + port + route
|
|
|
|
let nuxt = null
|
|
let page = null
|
|
|
|
// Init nuxt.js and create server listening on localhost:4003
|
|
test.serial('Init Nuxt.js', async t => {
|
|
const options = {
|
|
rootDir: resolve(__dirname, 'fixtures/basic'),
|
|
buildDir: '.nuxt-csr',
|
|
dev: true,
|
|
head: {
|
|
titleTemplate(titleChunk) {
|
|
return titleChunk ? `${titleChunk} - Nuxt.js` : 'Nuxt.js'
|
|
}
|
|
},
|
|
build: {
|
|
stats: false
|
|
}
|
|
}
|
|
|
|
const logSpy = await interceptLog(async () => {
|
|
nuxt = new Nuxt(options)
|
|
await new Builder(nuxt).build()
|
|
await nuxt.listen(port, 'localhost')
|
|
})
|
|
|
|
t.true(logSpy.calledWithMatch('DONE'))
|
|
t.true(logSpy.calledWithMatch('OPEN'))
|
|
})
|
|
|
|
test.serial('Start browser', async t => {
|
|
t.plan(0) // suppress 'no assertions' warning
|
|
await browser.start({
|
|
// slowMo: 50,
|
|
// headless: false
|
|
})
|
|
})
|
|
|
|
test.serial('Open /', async t => {
|
|
page = await browser.page(url('/'))
|
|
|
|
t.is(await page.$text('h1'), 'Index page')
|
|
})
|
|
|
|
test.serial('/stateless', async t => {
|
|
const { hook } = await page.nuxt.navigate('/stateless', false)
|
|
const loading = await page.nuxt.loadingData()
|
|
|
|
t.is(loading.show, true)
|
|
await hook
|
|
t.is(await page.$text('h1'), 'My component!')
|
|
})
|
|
|
|
test.serial('/css', async t => {
|
|
await page.nuxt.navigate('/css')
|
|
|
|
t.is(await page.$text('.red'), 'This is red')
|
|
t.is(await page.$eval('.red', (red) => window.getComputedStyle(red).color), 'rgb(255, 0, 0)')
|
|
})
|
|
|
|
test.serial('/stateful', async t => {
|
|
await page.nuxt.navigate('/stateful')
|
|
|
|
t.is(await page.$text('p'), 'The answer is 42')
|
|
})
|
|
|
|
test.serial('/store', async t => {
|
|
await page.nuxt.navigate('/store')
|
|
|
|
t.is(await page.$text('h1'), 'Vuex Nested Modules')
|
|
t.is(await page.$text('p'), '1')
|
|
})
|
|
|
|
test.serial('/head', async t => {
|
|
const msg = new Promise((resolve) => page.on('console', (msg) => resolve(msg.text)))
|
|
await page.nuxt.navigate('/head')
|
|
const metas = await page.$$attr('meta', 'content')
|
|
|
|
t.is(await msg, 'Body script!')
|
|
t.is(await page.title(), 'My title - Nuxt.js')
|
|
t.is(await page.$text('h1'), 'I can haz meta tags')
|
|
t.is(metas[0], 'my meta')
|
|
})
|
|
|
|
test.serial('/async-data', async t => {
|
|
await page.nuxt.navigate('/async-data')
|
|
|
|
t.is(await page.$text('p'), 'Nuxt.js')
|
|
})
|
|
|
|
test.serial('/await-async-data', async t => {
|
|
await page.nuxt.navigate('/await-async-data')
|
|
|
|
t.is(await page.$text('p'), 'Await Nuxt.js')
|
|
})
|
|
|
|
test.serial('/callback-async-data', async t => {
|
|
await page.nuxt.navigate('/callback-async-data')
|
|
|
|
t.is(await page.$text('p'), 'Callback Nuxt.js')
|
|
})
|
|
|
|
test.serial('/users/1', async t => {
|
|
await page.nuxt.navigate('/users/1')
|
|
|
|
t.is(await page.$text('h1'), 'User: 1')
|
|
})
|
|
|
|
test.serial('/validate should display a 404', async t => {
|
|
await page.nuxt.navigate('/validate')
|
|
const error = await page.nuxt.errorData()
|
|
|
|
t.is(error.statusCode, 404)
|
|
t.is(error.message, 'This page could not be found')
|
|
})
|
|
|
|
test.serial('/validate?valid=true', async t => {
|
|
await page.nuxt.navigate('/validate?valid=true')
|
|
|
|
t.is(await page.$text('h1'), 'I am valid')
|
|
})
|
|
|
|
test.serial('/redirect', async t => {
|
|
await page.nuxt.navigate('/redirect')
|
|
|
|
t.is(await page.$text('h1'), 'Index page')
|
|
})
|
|
|
|
test.serial('/error', async t => {
|
|
await page.nuxt.navigate('/error')
|
|
|
|
t.deepEqual(await page.nuxt.errorData(), { statusCode: 500 })
|
|
t.is(await page.$text('.title'), 'Error mouahahah')
|
|
})
|
|
|
|
test.serial('/error2', async t => {
|
|
await page.nuxt.navigate('/error2')
|
|
|
|
t.is(await page.$text('.title'), 'Custom error')
|
|
t.deepEqual(await page.nuxt.errorData(), { message: 'Custom error' })
|
|
})
|
|
|
|
test.serial('/redirect-middleware', async t => {
|
|
await page.nuxt.navigate('/redirect-middleware')
|
|
|
|
t.is(await page.$text('h1'), 'Index page')
|
|
})
|
|
|
|
test.serial('/redirect-external', async t => {
|
|
// New page for redirecting to external link.
|
|
const page = await browser.page(url('/'))
|
|
await page.nuxt.navigate('/redirect-external', false)
|
|
await page.waitForFunction(() => window.location.href === 'https://nuxtjs.org/')
|
|
page.close()
|
|
t.pass()
|
|
})
|
|
|
|
test.serial('/redirect-name', async t => {
|
|
await page.nuxt.navigate('/redirect-name')
|
|
|
|
t.is(await page.$text('h1'), 'My component!')
|
|
})
|
|
|
|
test.serial('/no-ssr', async t => {
|
|
await page.nuxt.navigate('/no-ssr')
|
|
|
|
t.is(await page.$text('h1'), 'Displayed only on client-side')
|
|
})
|
|
|
|
test.serial('/meta', async t => {
|
|
await page.nuxt.navigate('/meta')
|
|
|
|
const state = await page.nuxt.storeState()
|
|
t.deepEqual(state.meta, [{ works: true }])
|
|
})
|
|
|
|
test.serial('/fn-midd', async t => {
|
|
await page.nuxt.navigate('/fn-midd')
|
|
|
|
t.is(await page.$text('.title'), 'You need to ask the permission')
|
|
t.deepEqual(await page.nuxt.errorData(), { message: 'You need to ask the permission', statusCode: 403 })
|
|
})
|
|
|
|
test.serial('/fn-midd?please=true', async t => {
|
|
await page.nuxt.navigate('/fn-midd?please=true')
|
|
|
|
const h1 = await page.$text('h1')
|
|
t.true(h1.includes('Date:'))
|
|
})
|
|
|
|
test.serial('/router-guard', async t => {
|
|
await page.nuxt.navigate('/router-guard')
|
|
|
|
t.is(await page.$text('p'), 'Nuxt.js')
|
|
})
|
|
|
|
// Close server and ask nuxt to stop listening to file changes
|
|
test.after.always('Closing server and nuxt.js', async t => {
|
|
await nuxt.close()
|
|
})
|
|
|
|
test.after.always('Stop browser', async t => {
|
|
await browser.stop()
|
|
})
|