2016-12-24 17:50:28 +00:00
|
|
|
import test from 'ava'
|
|
|
|
import { resolve } from 'path'
|
|
|
|
import fs from 'fs'
|
|
|
|
import pify from 'pify'
|
|
|
|
const readFile = pify(fs.readFile)
|
|
|
|
|
|
|
|
// Init nuxt.js and create server listening on localhost:4000
|
|
|
|
test.before('Init Nuxt.js', async t => {
|
|
|
|
const Nuxt = require('../')
|
|
|
|
const nuxt = new Nuxt({
|
|
|
|
rootDir: resolve(__dirname, 'fixtures/dynamic-routes'),
|
|
|
|
dev: false
|
|
|
|
})
|
|
|
|
await nuxt.build()
|
|
|
|
})
|
|
|
|
|
2017-02-04 14:27:41 +00:00
|
|
|
test('Check .nuxt/router.js', t => {
|
2016-12-24 17:50:28 +00:00
|
|
|
return readFile(resolve(__dirname, './fixtures/dynamic-routes/.nuxt/router.js'), 'utf-8')
|
|
|
|
.then((routerFile) => {
|
|
|
|
routerFile = routerFile.slice(
|
|
|
|
routerFile.indexOf('routes: ['),
|
|
|
|
-3
|
|
|
|
)
|
|
|
|
.replace('routes: [', '[')
|
|
|
|
.replace(/ _[0-9A-z]+,/g, ' "",')
|
|
|
|
let routes = eval('( ' + routerFile + ')') // eslint-disable-line no-eval
|
2017-01-11 14:03:26 +00:00
|
|
|
// pages/index.vue
|
|
|
|
t.is(routes[0].path, '/')
|
|
|
|
t.is(routes[0].name, 'index')
|
2016-12-24 17:50:28 +00:00
|
|
|
// pages/test/index.vue
|
2017-02-10 20:24:29 +00:00
|
|
|
t.is(routes[1].path, '/test')
|
|
|
|
t.is(routes[1].name, 'test')
|
2017-01-11 14:03:26 +00:00
|
|
|
// pages/posts.vue
|
2017-02-10 20:24:29 +00:00
|
|
|
t.is(routes[2].path, '/posts')
|
|
|
|
t.is(routes[2].name, 'posts')
|
|
|
|
t.is(routes[2].children.length, 1)
|
2017-01-11 14:03:26 +00:00
|
|
|
// pages/posts/_id.vue
|
2017-02-10 20:24:29 +00:00
|
|
|
t.is(routes[2].children[0].path, ':id?')
|
|
|
|
t.is(routes[2].children[0].name, 'posts-id')
|
2016-12-24 17:50:28 +00:00
|
|
|
// pages/parent.vue
|
2017-02-10 20:24:29 +00:00
|
|
|
t.is(routes[3].path, '/parent')
|
|
|
|
t.falsy(routes[3].name) // parent route has no name
|
2016-12-24 17:50:28 +00:00
|
|
|
// pages/parent/*.vue
|
2017-02-10 20:24:29 +00:00
|
|
|
t.is(routes[3].children.length, 3) // parent has 3 children
|
|
|
|
t.deepEqual(routes[3].children.map((r) => r.path), ['', 'teub', 'child'])
|
|
|
|
t.deepEqual(routes[3].children.map((r) => r.name), ['parent', 'parent-teub', 'parent-child'])
|
|
|
|
// pages/test/projects/index.vue
|
|
|
|
t.is(routes[4].path, '/test/projects')
|
|
|
|
t.is(routes[4].name, 'test-projects')
|
|
|
|
// pages/test/users.vue
|
|
|
|
t.is(routes[5].path, '/test/users')
|
|
|
|
t.falsy(routes[5].name) // parent route has no name
|
|
|
|
// pages/test/users/*.vue
|
|
|
|
t.is(routes[5].children.length, 5) // parent has 5 children
|
|
|
|
t.deepEqual(routes[5].children.map((r) => r.path), ['', 'projects', 'projects/:category', ':id', ':index/teub'])
|
|
|
|
t.deepEqual(routes[5].children.map((r) => r.name), ['test-users', 'test-users-projects', 'test-users-projects-category', 'test-users-id', 'test-users-index-teub'])
|
|
|
|
// pages/test/songs/toto.vue
|
|
|
|
t.is(routes[6].path, '/test/songs/toto')
|
|
|
|
t.is(routes[6].name, 'test-songs-toto')
|
|
|
|
// pages/test/songs/_id.vue
|
|
|
|
t.is(routes[7].path, '/test/songs/:id?')
|
|
|
|
t.is(routes[7].name, 'test-songs-id')
|
|
|
|
// pages/test/projects/_category.vue
|
|
|
|
t.is(routes[8].path, '/test/projects/:category')
|
|
|
|
t.is(routes[8].name, 'test-projects-category')
|
|
|
|
// pages/users/_id.vue
|
|
|
|
t.is(routes[9].path, '/users/:id?')
|
|
|
|
t.is(routes[9].name, 'users-id')
|
|
|
|
// pages/test/_.vue
|
|
|
|
t.is(routes[10].path, '/test/*')
|
|
|
|
t.is(routes[10].name, 'test-all')
|
2017-02-09 00:18:56 +00:00
|
|
|
// pages/_slug.vue
|
2017-02-10 20:24:29 +00:00
|
|
|
t.is(routes[11].path, '/:slug')
|
|
|
|
t.is(routes[11].name, 'slug')
|
|
|
|
// pages/_key/_id.vue
|
|
|
|
t.is(routes[12].path, '/:key/:id?')
|
|
|
|
t.is(routes[12].name, 'key-id')
|
2017-02-03 19:23:39 +00:00
|
|
|
// pages/_.vue
|
2017-02-10 20:24:29 +00:00
|
|
|
t.is(routes[13].path, '/*')
|
|
|
|
t.is(routes[13].name, 'all')
|
2016-12-24 17:50:28 +00:00
|
|
|
})
|
|
|
|
})
|