<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
339 lines
12 KiB
TypeScript
339 lines
12 KiB
TypeScript
import 'nx/src/internal-testing-utils/mock-project-graph';
|
|
|
|
import {
|
|
getProjects,
|
|
readJson,
|
|
readNxJson,
|
|
readProjectConfiguration,
|
|
Tree,
|
|
} from '@nx/devkit';
|
|
import { createTreeWithEmptyWorkspace } from '@nx/devkit/testing';
|
|
import { Linter } from '@nx/eslint';
|
|
import { expoApplicationGenerator } from './application';
|
|
|
|
describe('app', () => {
|
|
let appTree: Tree;
|
|
|
|
beforeEach(() => {
|
|
appTree = createTreeWithEmptyWorkspace();
|
|
appTree.write('.gitignore', '');
|
|
});
|
|
|
|
it('should update workspace', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
displayName: 'myApp',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'none',
|
|
skipFormat: false,
|
|
js: false,
|
|
unitTestRunner: 'none',
|
|
projectNameAndRootFormat: 'as-provided',
|
|
});
|
|
const projects = getProjects(appTree);
|
|
|
|
expect(projects.get('my-app').root).toEqual('my-app');
|
|
});
|
|
|
|
it('should update nx.json', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
displayName: 'myApp',
|
|
tags: 'one,two',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'none',
|
|
skipFormat: false,
|
|
js: false,
|
|
unitTestRunner: 'none',
|
|
projectNameAndRootFormat: 'as-provided',
|
|
});
|
|
|
|
const projectConfiguration = readProjectConfiguration(appTree, 'my-app');
|
|
expect(projectConfiguration).toMatchObject({
|
|
tags: ['one', 'two'],
|
|
});
|
|
});
|
|
|
|
it('should generate files', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
displayName: 'myApp',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'none',
|
|
skipFormat: false,
|
|
js: false,
|
|
unitTestRunner: 'jest',
|
|
projectNameAndRootFormat: 'as-provided',
|
|
});
|
|
expect(appTree.exists('my-app/src/app/App.tsx')).toBeTruthy();
|
|
expect(appTree.exists('my-app/src/app/App.spec.tsx')).toBeTruthy();
|
|
|
|
const tsconfig = readJson(appTree, 'my-app/tsconfig.json');
|
|
expect(tsconfig.extends).toEqual('../tsconfig.base.json');
|
|
|
|
expect(appTree.exists('my-app/.eslintrc.json')).toBe(true);
|
|
});
|
|
|
|
it('should generate js files', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
displayName: 'myApp',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'none',
|
|
skipFormat: false,
|
|
js: true,
|
|
unitTestRunner: 'jest',
|
|
projectNameAndRootFormat: 'as-provided',
|
|
});
|
|
expect(appTree.exists('my-app/src/app/App.js')).toBeTruthy();
|
|
expect(appTree.exists('my-app/src/app/App.spec.js')).toBeTruthy();
|
|
|
|
const tsconfig = readJson(appTree, 'my-app/tsconfig.json');
|
|
expect(tsconfig.extends).toEqual('../tsconfig.base.json');
|
|
|
|
expect(appTree.exists('my-app/.eslintrc.json')).toBe(true);
|
|
});
|
|
|
|
describe('detox', () => {
|
|
it('should create e2e app with directory', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
directory: 'my-dir',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'detox',
|
|
js: false,
|
|
skipFormat: false,
|
|
unitTestRunner: 'none',
|
|
projectNameAndRootFormat: 'as-provided',
|
|
});
|
|
|
|
expect(appTree.exists('my-dir-e2e/.detoxrc.json')).toBeTruthy();
|
|
const detoxrc = appTree.read('my-dir-e2e/.detoxrc.json', 'utf-8');
|
|
|
|
// Strip trailing commas
|
|
const detoxrcJson = JSON.parse(
|
|
detoxrc.replace(/(?<=(true|false|null|["\d}\]])\s*),(?=\s*[}\]])/g, '')
|
|
);
|
|
expect(detoxrcJson.apps).toEqual({
|
|
'android.debug': {
|
|
binaryPath:
|
|
'../my-dir/android/app/build/outputs/apk/debug/app-debug.apk',
|
|
build:
|
|
'cd ../my-dir/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug',
|
|
type: 'android.apk',
|
|
},
|
|
'android.local': {
|
|
binaryPath: '../my-dir/dist/MyApp.apk',
|
|
build:
|
|
'npx nx run my-app:build --platform android --profile preview --wait --local --no-interactive --output=../my-dir/dist/MyApp.apk',
|
|
type: 'android.apk',
|
|
},
|
|
'android.release': {
|
|
binaryPath:
|
|
'../my-dir/android/app/build/outputs/apk/release/app-release.apk',
|
|
build:
|
|
'cd ../my-dir/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release',
|
|
type: 'android.apk',
|
|
},
|
|
'ios.debug': {
|
|
binaryPath:
|
|
'../my-dir/ios/build/Build/Products/Debug-iphonesimulator/MyApp.app',
|
|
build:
|
|
"cd ../my-dir/ios && xcodebuild -workspace MyApp.xcworkspace -scheme MyApp -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
|
|
type: 'ios.app',
|
|
},
|
|
'ios.local': {
|
|
binaryPath: '../my-dir/dist/MyApp.app',
|
|
build:
|
|
'npx nx run my-app:build --platform ios --profile preview --wait --local --no-interactive --output=../my-dir/dist/MyApp.tar.gz',
|
|
type: 'ios.app',
|
|
},
|
|
'ios.release': {
|
|
binaryPath:
|
|
'../my-dir/ios/build/Build/Products/Release-iphonesimulator/MyApp.app',
|
|
build:
|
|
"cd ../my-dir/ios && xcodebuild -workspace MyApp.xcworkspace -scheme MyApp -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
|
|
type: 'ios.app',
|
|
},
|
|
});
|
|
});
|
|
|
|
it('should create e2e app without directory', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'detox',
|
|
js: false,
|
|
skipFormat: false,
|
|
unitTestRunner: 'none',
|
|
projectNameAndRootFormat: 'as-provided',
|
|
});
|
|
|
|
expect(appTree.exists('my-app-e2e/.detoxrc.json')).toBeTruthy();
|
|
const detoxrc = appTree.read('my-app-e2e/.detoxrc.json', 'utf-8');
|
|
// Strip trailing commas
|
|
const detoxrcJson = JSON.parse(
|
|
detoxrc.replace(/(?<=(true|false|null|["\d}\]])\s*),(?=\s*[}\]])/g, '')
|
|
);
|
|
expect(detoxrcJson.apps).toEqual({
|
|
'android.debug': {
|
|
binaryPath:
|
|
'../my-app/android/app/build/outputs/apk/debug/app-debug.apk',
|
|
build:
|
|
'cd ../my-app/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug',
|
|
type: 'android.apk',
|
|
},
|
|
'android.local': {
|
|
binaryPath: '../my-app/dist/MyApp.apk',
|
|
build:
|
|
'npx nx run my-app:build --platform android --profile preview --wait --local --no-interactive --output=../my-app/dist/MyApp.apk',
|
|
type: 'android.apk',
|
|
},
|
|
'android.release': {
|
|
binaryPath:
|
|
'../my-app/android/app/build/outputs/apk/release/app-release.apk',
|
|
build:
|
|
'cd ../my-app/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release',
|
|
type: 'android.apk',
|
|
},
|
|
'ios.debug': {
|
|
binaryPath:
|
|
'../my-app/ios/build/Build/Products/Debug-iphonesimulator/MyApp.app',
|
|
build:
|
|
"cd ../my-app/ios && xcodebuild -workspace MyApp.xcworkspace -scheme MyApp -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
|
|
type: 'ios.app',
|
|
},
|
|
'ios.local': {
|
|
binaryPath: '../my-app/dist/MyApp.app',
|
|
build:
|
|
'npx nx run my-app:build --platform ios --profile preview --wait --local --no-interactive --output=../my-app/dist/MyApp.tar.gz',
|
|
type: 'ios.app',
|
|
},
|
|
'ios.release': {
|
|
binaryPath:
|
|
'../my-app/ios/build/Build/Products/Release-iphonesimulator/MyApp.app',
|
|
build:
|
|
"cd ../my-app/ios && xcodebuild -workspace MyApp.xcworkspace -scheme MyApp -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
|
|
type: 'ios.app',
|
|
},
|
|
});
|
|
});
|
|
|
|
it('should create e2e app with display name', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
displayName: 'my app name',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'detox',
|
|
js: false,
|
|
skipFormat: false,
|
|
unitTestRunner: 'none',
|
|
});
|
|
|
|
const projects = getProjects(appTree);
|
|
expect(projects.get('my-app').root).toEqual('my-app');
|
|
|
|
expect(appTree.exists('my-app-e2e/.detoxrc.json')).toBeTruthy();
|
|
const detoxrc = appTree.read('my-app-e2e/.detoxrc.json', 'utf-8');
|
|
// Strip trailing commas
|
|
const detoxrcJson = JSON.parse(
|
|
detoxrc.replace(/(?<=(true|false|null|["\d}\]])\s*),(?=\s*[}\]])/g, '')
|
|
);
|
|
expect(detoxrcJson.apps).toEqual({
|
|
'android.debug': {
|
|
binaryPath:
|
|
'../my-app/android/app/build/outputs/apk/debug/app-debug.apk',
|
|
build:
|
|
'cd ../my-app/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug',
|
|
type: 'android.apk',
|
|
},
|
|
'android.local': {
|
|
binaryPath: '../my-app/dist/myappname.apk',
|
|
build:
|
|
'npx nx run my-app:build --platform android --profile preview --wait --local --no-interactive --output=../my-app/dist/myappname.apk',
|
|
type: 'android.apk',
|
|
},
|
|
'android.release': {
|
|
binaryPath:
|
|
'../my-app/android/app/build/outputs/apk/release/app-release.apk',
|
|
build:
|
|
'cd ../my-app/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release',
|
|
type: 'android.apk',
|
|
},
|
|
'ios.debug': {
|
|
binaryPath:
|
|
'../my-app/ios/build/Build/Products/Debug-iphonesimulator/MyApp.app',
|
|
build:
|
|
"cd ../my-app/ios && xcodebuild -workspace MyApp.xcworkspace -scheme MyApp -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
|
|
type: 'ios.app',
|
|
},
|
|
'ios.local': {
|
|
binaryPath: '../my-app/dist/myappname.app',
|
|
build:
|
|
'npx nx run my-app:build --platform ios --profile preview --wait --local --no-interactive --output=../my-app/dist/myappname.tar.gz',
|
|
type: 'ios.app',
|
|
},
|
|
'ios.release': {
|
|
binaryPath:
|
|
'../my-app/ios/build/Build/Products/Release-iphonesimulator/MyApp.app',
|
|
build:
|
|
"cd ../my-app/ios && xcodebuild -workspace MyApp.xcworkspace -scheme MyApp -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
|
|
type: 'ios.app',
|
|
},
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('cypress', () => {
|
|
it('should create e2e app with e2e-ci targetDefaults', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
directory: 'my-dir',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'cypress',
|
|
js: false,
|
|
skipFormat: false,
|
|
unitTestRunner: 'none',
|
|
projectNameAndRootFormat: 'as-provided',
|
|
addPlugin: true,
|
|
});
|
|
|
|
// ASSERT
|
|
const nxJson = readNxJson(appTree);
|
|
expect(nxJson.targetDefaults['e2e-ci--**/*']).toMatchInlineSnapshot(`
|
|
{
|
|
"dependsOn": [
|
|
"^export",
|
|
],
|
|
}
|
|
`);
|
|
});
|
|
});
|
|
|
|
describe('playwright', () => {
|
|
it('should create e2e app with e2e-ci targetDefaults', async () => {
|
|
await expoApplicationGenerator(appTree, {
|
|
name: 'my-app',
|
|
directory: 'my-dir',
|
|
linter: Linter.EsLint,
|
|
e2eTestRunner: 'playwright',
|
|
js: false,
|
|
skipFormat: false,
|
|
unitTestRunner: 'none',
|
|
projectNameAndRootFormat: 'as-provided',
|
|
addPlugin: true,
|
|
});
|
|
|
|
// ASSERT
|
|
const nxJson = readNxJson(appTree);
|
|
expect(nxJson.targetDefaults['e2e-ci--**/*']).toMatchInlineSnapshot(`
|
|
{
|
|
"dependsOn": [
|
|
"^export",
|
|
],
|
|
}
|
|
`);
|
|
});
|
|
});
|
|
});
|