Skip to content

Commit

Permalink
Merge pull request #832 from ankushdharkar/feature/fastboot-testing-a…
Browse files Browse the repository at this point in the history
…pp-#831

Testing ember-cli-fastboot-testing in new test-package
  • Loading branch information
suchitadoshi1987 authored Jun 14, 2021
2 parents b6b17af + 0526362 commit 18d41f0
Show file tree
Hide file tree
Showing 25 changed files with 1,568 additions and 25 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml → .github/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ jobs:
run: yarn workspace basic-app test:mocha
- name: Custom App
run: yarn workspace custom-fastboot-app test:mocha
- name: Run ember-cli-fastboot-testing-app Tests
run: yarn workspace ember-cli-fastboot-testing-app test:ember

test-legacy-mocha:
name: Legacy Mocha Tests - ${{ matrix.node-version }}
Expand Down
19 changes: 19 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2

[*.hbs]
insert_final_newline = false

[*.{diff,md}]
trim_trailing_whitespace = false
9 changes: 9 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/.ember-cli
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
/**
Ember CLI sends analytics information by default. The data is completely
anonymous, but there are times when you might want to disable this behavior.

Setting `disableAnalytics` to true will prevent any data from being sent.
*/
"disableAnalytics": false
}
20 changes: 20 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# unconventional js
/blueprints/*/files/
/vendor/

# compiled output
/dist/
/tmp/

# dependencies
/bower_components/
/node_modules/

# misc
/coverage/
!.*

# ember-try
/.node_modules.ember-try/
/bower.json.ember-try
/package.json.ember-try
53 changes: 53 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
'use strict';

module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
legacyDecorators: true
}
},
plugins: [
'ember'
],
extends: [
'eslint:recommended',
'plugin:ember/recommended'
],
env: {
browser: true
},
rules: {},
overrides: [
// node files
{
files: [
'.eslintrc.js',
'.template-lintrc.js',
'ember-cli-build.js',
'testem.js',
'blueprints/*/index.js',
'config/**/*.js',
'lib/*/index.js',
'server/**/*.js'
],
parserOptions: {
sourceType: 'script'
},
env: {
browser: false,
node: true
},
plugins: ['node'],
extends: ['plugin:node/recommended'],
rules: {
// this can be removed once the following is fixed
// https://github.com/mysticatea/eslint-plugin-node/issues/77
'node/no-unpublished-require': 'off'
}
}
]
};
25 changes: 25 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist/
/tmp/

# dependencies
/bower_components/
/node_modules/

# misc
/.env*
/.pnp*
/.sass-cache
/connect.lock
/coverage/
/libpeerconnection.log
/npm-debug.log*
/testem.log
/yarn-error.log

# ember-try
/.node_modules.ember-try/
/bower.json.ember-try
/package.json.ember-try
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

module.exports = {
extends: 'octane'
};
3 changes: 3 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/.watchmanconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ignore_dirs": ["tmp", "dist"]
}
9 changes: 9 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# ember-cli-fastboot-testing-app

Adds `ember-cli-fastboot-testing` as a dependency and tests a simple rendering
of the index page with it.

### Running Tests

* `yarn install`
* `yarn test`
12 changes: 12 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/app/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Application from '@ember/application';
import Resolver from 'ember-resolver';
import loadInitializers from 'ember-load-initializers';
import config from './config/environment';

export default class App extends Application {
modulePrefix = config.modulePrefix;
podModulePrefix = config.podModulePrefix;
Resolver = Resolver;
}

loadInitializers(App, config.modulePrefix);
25 changes: 25 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CustomFastbootApp</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

{{content-for "head"}}

<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/ember-cli-fastboot-testing-app.css">

{{content-for "head-footer"}}
</head>
<body>
{{content-for "body"}}

<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/ember-cli-fastboot-testing-app.js"></script>

{{content-for "body-footer"}}
</body>
</html>
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<h2 id="title" data-test-welcome-header>Welcome to Ember</h2>

{{outlet}}
56 changes: 56 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/config/environment.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
'use strict';

module.exports = function(environment) {
let ENV = {
modulePrefix: 'ember-cli-fastboot-testing-app',
environment,
rootURL: '/',
locationType: 'auto',

fastboot: {
htmlFile: 'custom-index.html'
},

EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. EMBER_NATIVE_DECORATOR_SUPPORT: true
},
EXTEND_PROTOTYPES: {
// Prevent Ember Data from overriding Date.parse.
Date: false
}
},

APP: {
// Here you can pass flags/options to your application instance
// when it is created
}
};

if (environment === 'development') {
// ENV.APP.LOG_RESOLVER = true;
// ENV.APP.LOG_ACTIVE_GENERATION = true;
// ENV.APP.LOG_TRANSITIONS = true;
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
// ENV.APP.LOG_VIEW_LOOKUPS = true;
}

if (environment === 'test') {
// Testem prefers this...
ENV.locationType = 'none';

// keep test console output quieter
ENV.APP.LOG_ACTIVE_GENERATION = false;
ENV.APP.LOG_VIEW_LOOKUPS = false;

ENV.APP.rootElement = '#ember-testing';
ENV.APP.autoboot = false;
}

if (environment === 'production') {
// here you can enable a production-specific feature
}

return ENV;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"application-template-wrapper": false,
"default-async-observers": true,
"jquery-integration": false,
"template-only-glimmer-components": true
}
18 changes: 18 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/config/targets.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
'use strict';

const browsers = [
'last 1 Chrome versions',
'last 1 Firefox versions',
'last 1 Safari versions'
];

const isCI = !!process.env.CI;
const isProduction = process.env.EMBER_ENV === 'production';

if (isCI || isProduction) {
browsers.push('ie 11');
}

module.exports = {
browsers
};
16 changes: 16 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/ember-cli-build.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
'use strict';

const EmberApp = require('ember-cli/lib/broccoli/ember-app');

module.exports = function(defaults) {
let app = new EmberApp(defaults, {
fingerprint: {
prepend: 'https://totally-sick-cdn.example.com/',
exclude: ['vendor.js', 'ember-cli-fastboot-testing-app.js'],
generateAssetMap: true,
assetMapPath: 'totally-customized-asset-map.json'
}
});

return app.toTree();
};
58 changes: 58 additions & 0 deletions test-packages/ember-cli-fastboot-testing-app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"name": "ember-cli-fastboot-testing-app",
"version": "3.2.0-beta.2",
"private": true,
"description": "Small description for ember-cli-fastboot-testing-app goes here",
"repository": "",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build",
"build:prod": "ember build --environment=production",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "npm-run-all lint:* test:*",
"test:ember": "ember test"
},
"devDependencies": {
"@ember/optional-features": "^1.3.0",
"babel-eslint": "^10.1.0",
"broccoli-asset-rev": "^3.0.0",
"ember-auto-import": "^1.5.3",
"ember-cli": "~3.19.0",
"ember-cli-app-version": "^3.2.0",
"ember-cli-babel": "^7.20.5",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-fastboot": "3.2.0-beta.2",
"ember-cli-fastboot-testing": "^0.5.0",
"ember-cli-htmlbars": "^5.1.2",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-cli-sri": "^2.1.1",
"ember-cli-uglify": "^3.0.0",
"ember-data": "~3.19.0",
"ember-export-application-global": "^2.0.1",
"ember-fetch": "^8.0.1",
"ember-load-initializers": "^2.1.1",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-qunit": "^4.6.0",
"ember-resolver": "^8.0.0",
"ember-source": "~3.19.0",
"ember-template-lint": "^2.8.0",
"eslint": "^7.1.0",
"eslint-plugin-ember": "^8.6.0",
"eslint-plugin-node": "^11.1.0",
"loader.js": "^4.7.0",
"npm-run-all": "^4.1.5",
"qunit-dom": "^1.2.0"
},
"ember": {
"edition": "octane"
},
"volta": { "extends": "../../package.json" }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>custom index</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

<!-- EMBER_CLI_FASTBOOT_HEAD -->
</head>
<body>
<!-- EMBER_CLI_FASTBOOT_BODY -->
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# http://www.robotstxt.org
User-agent: *
Disallow:
Loading

0 comments on commit 18d41f0

Please sign in to comment.