|
| 1 | +# Angular Testing |
| 2 | + |
| 3 | +Ionic Framework supports multiple versions of Angular. As a result, we need to verify that Ionic works correctly with each of these Angular versions. |
| 4 | + |
| 5 | +## Syncing Local Changes |
| 6 | + |
| 7 | +The Angular test app supports syncing your locally built changes for validation. |
| 8 | + |
| 9 | +1. Build the `core` and `packages/angular` directories using `npm run build`. |
| 10 | +2. [Build the Angular test app](#test-app-build-structure). |
| 11 | +3. Navigate to the built test app directory (e.g. `packages/angular/test/build/ng14`). |
| 12 | +4. Install dependencies using `npm install`. |
| 13 | +5. Sync your local changes using `npm run sync`. |
| 14 | + |
| 15 | +From here you can either build the application or start a local dev server. When re-syncing changes, you will need to [wipe or disable the application cache](#application-cache). |
| 16 | + |
| 17 | +## Application Cache |
| 18 | + |
| 19 | +Angular CLI creates a cache of several files on disk by default in the `.angular` directory. This decreases the time taken to build the test application. However, the cache makes it difficult to quickly sync and check local changes of Ionic. As a result, the `.angular` cache is disabled by default in the test app projects. |
| 20 | + |
| 21 | +See https://angular.io/cli/cache for more information. |
| 22 | + |
| 23 | +### Disable Cache |
| 24 | + |
| 25 | +```shell |
| 26 | +ng cache disable |
| 27 | +``` |
| 28 | + |
| 29 | +> [!NOTE] |
| 30 | +> You may need to manually remove the `.angular` directory once after running this command. |
| 31 | +
|
| 32 | +### Enable Cache |
| 33 | + |
| 34 | +```shell |
| 35 | +ng cache enable |
| 36 | +``` |
| 37 | + |
| 38 | +> [!NOTE] |
| 39 | +> You will need to delete the `.angular` cache and restart the dev server every time you want to sync local changes of Ionic. |
| 40 | +
|
| 41 | +## Test App Build Structure |
| 42 | + |
| 43 | +> [!NOTE] |
| 44 | +> Please confirm your current directory as `packages/angular/test` before proceeding with any of the following commands. |
| 45 | +
|
| 46 | +Unlike other test applications, these test apps are broken up into multiple directories. These directories are then combined to create a single application. This allows us to share common application code, tests, etc so that each app is being tested the same way. Below details the different pieces that help create a single test application. |
| 47 | + |
| 48 | +**apps** - This directory contains partial applications for each version of Angular we want to test. Typically these directories contain new `package.json` files, `angular.json` files, and more. If you have code that is specific to a particular version of Angular, put it in this directory. |
| 49 | + |
| 50 | +**base** - This directory contains the base application that each test app will use. This is where tests, application logic, and more live. If you have code that needs to be run on every test app, put it in this directory. |
| 51 | + |
| 52 | +**build** - When the `apps` and `base` directories are merged, the final result is put in this directory. The `build` directory should never be committed to git. |
| 53 | + |
| 54 | +**build.sh** - This is the script that merges the `apps` and `base` directories and places the built application in the `build` directory. |
| 55 | + |
| 56 | +Usage: |
| 57 | + |
| 58 | +```shell |
| 59 | +# Build a test app using apps/ng14 as a reference |
| 60 | +./build.sh ng14 |
| 61 | +``` |
| 62 | + |
| 63 | +## How to modify test apps |
| 64 | + |
| 65 | +To add new tests, components, or pages, modify the `base` project. This ensures that tests are run for every tested version. |
| 66 | + |
| 67 | +If you want to add a version-specific change, add the change inside of the appropriate projects in `apps`. Be sure to replicate the directory structure. For example, if you are adding a new E2E test file called `test.spec.ts` in `apps/ng14`, make sure you place the file in `apps/ng14/e2e/src/test.spec.ts`. |
| 68 | + |
| 69 | +### Version-specific tests |
| 70 | + |
| 71 | +If you need to add E2E tests that are only run on a specific version of the JS Framework, replicate the `VersionTest` component on each partial application. This ensures that tests for framework version X do not get run for framework version Y. |
| 72 | + |
| 73 | +### Testing Lazy Loaded Ionic Components |
| 74 | + |
| 75 | +Tests for lazy loaded Ionic UI components should only be added under the `/lazy` route. This ensures the `IonicModule` is added. |
| 76 | + |
| 77 | +### Testing Standalone Ionic Components |
| 78 | + |
| 79 | +Tests for standalone Ionic UI components should only be added under the `/standalone` route. This allows for an isolated environment where the lazy loaded `IonicModule` is not initialized. The standalone components use Stencil's custom element bundle instead of the lazy loaded bundle. If `IonicModule` is initialized then the Stencil components will fall back to using the lazy loaded implementation instead of the custom elements bundle implementation. |
| 80 | + |
| 81 | +## Adding New Test Apps |
| 82 | + |
| 83 | +As we add support for new versions of Angular, we will also need to update this directory to test against new applications. The following steps can serve as a guide for adding new apps: |
| 84 | + |
| 85 | +1. Navigate to the built app for the most recent version of Angular that Ionic tests. |
| 86 | +2. Update the application by following the steps on https://update.angular.io/. |
| 87 | +3. Make note of any files that changed during the upgrade (`package.json`, `package-lock.json`, `angular.json`, etc). |
| 88 | +4. Copy the changed files to a new directory in `apps`. |
| 89 | +5. Add a new entry to the matrix for `test-core-angular` in `./github/workflows/build.yml`. This will allow the new test app to run against all PRs. |
| 90 | +6. Commit these changes and push. |
| 91 | + |
| 92 | +Example: |
| 93 | + |
| 94 | +In this example, we are going to add the Angular 14 test app. |
| 95 | + |
| 96 | +1. Build the Angular 13 test app using `./build.sh ng13`. |
| 97 | +2. Navigate to `build/ng13`. |
| 98 | +3. Perform the upgrade steps on https://update.angular.io/. The "From" field should say "13.0" and the "To" field should say "14.0". |
| 99 | + |
| 100 | +Note: You may encounter some other peer dependency issues not covered by the Angular Upgrade Guide. These peer dependency issues can be resolved manually by updating the installed version of each dependency. |
| 101 | + |
| 102 | +4. Observe that the output of the Angular upgrade indicates that the following files were modified: |
| 103 | + |
| 104 | +`angular.json` |
| 105 | +`package-lock.json` |
| 106 | +`package.json` |
| 107 | +`tsconfig.json` |
| 108 | +`src/app/form/form.component.ts` |
| 109 | +`src/app/modal-example/modal-example.component.ts` |
| 110 | + |
| 111 | +5. Create a directory in `apps` named `ng14`. |
| 112 | +6. Copy the modified files to the `apps/ng14` directory. |
| 113 | +7. Open `./github/workflows/build.yml` and find the `test-angular-e2e` job. |
| 114 | +8. Find the `apps` field under `matrix`. |
| 115 | +9. Add "ng14" to the `apps` field. |
| 116 | +10. Open `./github/workflows/stencil-nightly.yml` and find the `test-angular-e2e` job. |
| 117 | +11. Repeat steps 8 and 9. |
| 118 | +12. Commit these changes and push. |
0 commit comments