-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from jelhan/issue-116-inject-runtime-config-o…
…nly-if-app-has-fastboot-dependency inject runtime config only if FastBoot dependency exists
- Loading branch information
Showing
2 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
node-tests/e2e/fastboot-support-app-not-using-fastboot-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
const expect = require('chai').expect; | ||
const AddonTestApp = require('ember-cli-addon-tests').AddonTestApp; | ||
const denodeify = require('denodeify'); | ||
const request = denodeify(require('request')); | ||
|
||
function getRunTimeConfig(html) { | ||
let encodedConfig = html.match(/<meta name="default\/config\/environment" content="(.*)" \/>/)[1]; | ||
return JSON.parse(decodeURIComponent(encodedConfig)); | ||
} | ||
|
||
describe('e2e: fastboot integration if consumer does not use FastBoot', function() { | ||
this.timeout(300000); | ||
|
||
let app; | ||
|
||
before(async function() { | ||
app = new AddonTestApp(); | ||
|
||
await app.create('default', { | ||
noFixtures: true, | ||
skipNpm: true, | ||
}); | ||
|
||
await app.editPackageJSON(pkg => { | ||
delete pkg.devDependencies['ember-cli-fastboot']; | ||
delete pkg.devDependencies['fastboot-app-server']; | ||
}); | ||
|
||
await app.run('npm', 'install'); | ||
|
||
await app.startServer(); | ||
}); | ||
|
||
after(async function() { | ||
await app.stopServer(); | ||
}); | ||
|
||
it('does not push run-time configuration into app if app does not use FastBoot', async function() { | ||
let response = await request({ | ||
url: 'http://localhost:49741', | ||
headers: { | ||
'Accept': 'text/html' | ||
} | ||
}); | ||
|
||
expect(response.statusCode).to.equal(200); | ||
|
||
let runTimeConfig = getRunTimeConfig(response.body); | ||
expect(runTimeConfig).to.not.include.key('ember-cli-content-security-policy'); | ||
}); | ||
}); |