Skip to content

Commit

Permalink
test: add cli-hello-world-ivy-i18n integration test (#33510)
Browse files Browse the repository at this point in the history
PR Close #33510
  • Loading branch information
filipesilva authored and atscott committed Nov 1, 2019
1 parent 4e7ffbf commit 4857c53
Show file tree
Hide file tree
Showing 36 changed files with 9,368 additions and 0 deletions.
13 changes: 13 additions & 0 deletions integration/cli-hello-world-ivy-i18n/.editorconfig
@@ -0,0 +1,13 @@
# Editor configuration, see https://editorconfig.org
root = true

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

[*.md]
max_line_length = off
trim_trailing_whitespace = false
49 changes: 49 additions & 0 deletions integration/cli-hello-world-ivy-i18n/.gitignore
@@ -0,0 +1,49 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

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

# System Files
.DS_Store
Thumbs.db

# Don't accidentally commit locale translates
src/locales
5 changes: 5 additions & 0 deletions integration/cli-hello-world-ivy-i18n/README.md
@@ -0,0 +1,5 @@
# CliHelloWorldIvyI18n

This project tests i18n using localize with CLI.

It includes a date pipe to ensure localeData is pulled into builds correctly.
155 changes: 155 additions & 0 deletions integration/cli-hello-world-ivy-i18n/angular.json
@@ -0,0 +1,155 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"cli-hello-world-ivy-i18n": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"i18n": {
"sourceLocale": "en-US",
"locales": {
"fr": "src/locale/messages.fr.xlf",
"de": "src/locale/messages.de.xlf"
}
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": [],
"progress": false,
"i18nMissingTranslation": "error"
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
},
"fr": {
"localize": ["fr"],
"deleteOutputPath": false
},
"de": {
"localize": ["de"],
"deleteOutputPath": false
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "cli-hello-world-ivy-i18n:build"
},
"configurations": {
"production": {
"browserTarget": "cli-hello-world-ivy-i18n:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "cli-hello-world-ivy-i18n:build",
"outputPath": "src/locale"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": [],
"progress": false,
"watch": false
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "cli-hello-world-ivy-i18n:serve",
"webdriverUpdate": false,
"specs": ["./en/app.e2e-spec.ts"]
},
"configurations": {
"production": {
"devServerTarget": "cli-hello-world-ivy-i18n:serve:production",
"protractorConfig": "e2e/protractor.conf.js"
},
"fr": {
"devServerTarget": "",
"specs": ["./fr/app.e2e-spec.ts"]
},
"de": {
"devServerTarget": "",
"specs": ["./de/app.e2e-spec.ts"]
}
}
}
}
}},
"defaultProject": "cli-hello-world-ivy-i18n"
}
12 changes: 12 additions & 0 deletions integration/cli-hello-world-ivy-i18n/browserslist
@@ -0,0 +1,12 @@
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries

# You can see what browsers were selected by your queries by running:
# npx browserslist

> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11 # For IE 9-11 support, remove 'not'.
9 changes: 9 additions & 0 deletions integration/cli-hello-world-ivy-i18n/e2e/app.po.ts
@@ -0,0 +1,9 @@
import {browser, by, element} from 'protractor';

export class AppPage {
navigateTo() { return browser.get('/'); }

getHeading() { return element(by.css('app-root h1')).getText(); }

getParagraph(name: string) { return element(by.css('app-root p#' + name)).getText(); }
}
29 changes: 29 additions & 0 deletions integration/cli-hello-world-ivy-i18n/e2e/de/app.e2e-spec.ts
@@ -0,0 +1,29 @@
import {AppPage} from '../app.po';
import {browser, logging} from 'protractor';

describe('cli-hello-world-ivy App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
page.navigateTo();
});

it('should display title', () => {
expect(page.getHeading()).toEqual('Hallo cli-hello-world-ivy-i18n!');
});

it('should display the locale', () => { expect(page.getParagraph('locale')).toEqual('de'); });

it('the date pipe should show the localized month', () => {
page.navigateTo();
expect(page.getParagraph('date')).toEqual('Januar');
});

afterEach(async () => {
// Assert that there are no errors emitted from the browser
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
expect(logs).not.toContain(jasmine.objectContaining({
level: logging.Level.SEVERE,
} as logging.Entry));
});
});
28 changes: 28 additions & 0 deletions integration/cli-hello-world-ivy-i18n/e2e/en/app.e2e-spec.ts
@@ -0,0 +1,28 @@
import {AppPage} from '../app.po';
import {browser, logging} from 'protractor';

describe('cli-hello-world-ivy App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
page.navigateTo();
});

it('should display title',
() => { expect(page.getHeading()).toEqual('Hello cli-hello-world-ivy-i18n!'); });

it('should display the locale', () => { expect(page.getParagraph('locale')).toEqual('en-US'); });

it('the date pipe should show the localized month', () => {
page.navigateTo();
expect(page.getParagraph('date')).toEqual('January');
});

afterEach(async () => {
// Assert that there are no errors emitted from the browser
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
expect(logs).not.toContain(jasmine.objectContaining({
level: logging.Level.SEVERE,
} as logging.Entry));
});
});
28 changes: 28 additions & 0 deletions integration/cli-hello-world-ivy-i18n/e2e/fr/app.e2e-spec.ts
@@ -0,0 +1,28 @@
import {AppPage} from '../app.po';
import {browser, logging} from 'protractor';

describe('cli-hello-world-ivy App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
page.navigateTo();
});

it('should display title',
() => { expect(page.getHeading()).toEqual('Bonjour cli-hello-world-ivy-i18n!'); });

it('should display the locale', () => { expect(page.getParagraph('locale')).toEqual('fr'); });

it('the date pipe should show the localized month', () => {
page.navigateTo();
expect(page.getParagraph('date')).toEqual('janvier');
});

afterEach(async () => {
// Assert that there are no errors emitted from the browser
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
expect(logs).not.toContain(jasmine.objectContaining({
level: logging.Level.SEVERE,
} as logging.Entry));
});
});
36 changes: 36 additions & 0 deletions integration/cli-hello-world-ivy-i18n/e2e/protractor.conf.js
@@ -0,0 +1,36 @@
// @ts-check
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts

const { SpecReporter } = require('jasmine-spec-reporter');

/**
* @type { import("protractor").Config }
*/
exports.config = {
allScriptsTimeout: 11000,
specs: [
'./src/**/*.e2e-spec.ts'
],
capabilities: {
browserName: 'chrome',
chromeOptions: {
binary: process.env.CHROME_BIN,
args: ['--no-sandbox']
}
},
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
print: function() {}
},
onPrepare() {
require('ts-node').register({
project: require('path').join(__dirname, './tsconfig.json')
});
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
}
};
13 changes: 13 additions & 0 deletions integration/cli-hello-world-ivy-i18n/e2e/tsconfig.json
@@ -0,0 +1,13 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"module": "commonjs",
"target": "es5",
"types": [
"jasmine",
"jasminewd2",
"node"
]
}
}

0 comments on commit 4857c53

Please sign in to comment.