1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Failing test for #4620 (#4625)

Failing test for #4620
This commit is contained in:
Alexander 2018-06-18 23:22:40 +02:00 committed by Tim Neutkens
parent c4d0b212f5
commit bf882eb60c
3 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import React from 'react'
import App, {Container} from 'next/app'
export default class MyApp extends App {
// find this
static async getInitialProps ({ ctx }) {
const { query, pathname, asPath } = ctx
return {url: {query, pathname, asPath}}
}
render () {
const {Component, url} = this.props
return <Container><Component url={url} /></Container>
}
}

View file

@ -0,0 +1 @@
export default props => JSON.stringify(props, null, 2)

View file

@ -0,0 +1,55 @@
/* global jasmine, describe, it, expect, beforeAll, afterAll */
import webdriver from 'next-webdriver'
import { readFileSync, writeFileSync } from 'fs'
import { join } from 'path'
import {
renderViaHTTP,
findPort,
launchApp,
killApp,
waitFor
} from 'next-test-utils'
let appPort
let server
jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000 * 60 * 5
describe('App asPath', () => {
beforeAll(async () => {
appPort = await findPort()
server = await launchApp(join(__dirname, '../'), appPort, true)
// pre-build all pages at the start
await Promise.all([
renderViaHTTP(appPort, '/')
])
})
afterAll(() => killApp(server))
it('should not have any changes in asPath after a bundle rebuild', async () => {
const browser = await webdriver(appPort, '/')
const appPath = join(__dirname, '../', 'pages', '_app.js')
const originalContent = readFileSync(appPath, 'utf8')
try {
const text = await browser.elementByCss('body').text()
expect(text).toBe('{ "url": { "query": {}, "pathname": "/", "asPath": "/" } }')
const editedContent = originalContent.replace('find this', 'replace with this')
// Change the content to trigger a bundle rebuild
await writeFileSync(appPath, editedContent, 'utf8')
// Wait for the bundle rebuild
await waitFor(5000)
const newContent = await browser.elementByCss('body').text()
expect(newContent).toBe('{ "url": { "query": {}, "pathname": "/", "asPath": "/" } }')
} finally {
// Change back to the original content
writeFileSync(appPath, originalContent, 'utf8')
browser.close()
}
})
})