Skip to content

Latest commit

 

History

History
156 lines (110 loc) · 7.93 KB

README.md

File metadata and controls

156 lines (110 loc) · 7.93 KB

Overview

Many of the documentation pages contain snippets of code examples. These snippets are extracted from real working example applications, which are stored in sub-folders of the aio/content/examples/ folder. Each example can be built and run independently. Each example also provides tests (mostly e2e and occasionally unit tests), which are run as part of our CircleCI test_docs_examples* jobs, to verify that the examples continue to work as expected, as changes are made to the core Angular libraries.

There are a number of common boilerplate files that are needed to configure each example's project. These common boilerplate files are maintained centrally to reduce the amount of effort if one of them needs to change.

Boilerplate overview

As mentioned above, many of the documentation pages contain snippets extracted from real example applications. To achieve that, all those applications need to contain some basic boilerplate, such as a package.json file with scripts and dependencies, etc.

There are also different project types, each with its own boilerplate. For example, there are projects based on the Angular CLI, projects that use AngularJS, Custom Elements, i18n, server-side rendering, etc. (See the example configuration section below for more info on how to specify the project type.)

To avoid having to maintain the boilerplate in each example, we use the example-boilerplate-js script to provide a set of files that works across all the examples of a specific type.

After a yarn build, the boilerplate files are combined with the example sources in the Bazel output tree rooted at ../dist/bin/aio/content/examples.

Boilerplate files

Inside shared/boilerplate/ there is a sub-folder with boilerplate files for each of the different project types.

Currently, the following project types are supported:

  • cli: For example apps based on the Angular CLI. This is the default type and is used in the majority of the examples.
  • cli-ajs: For CLI-based examples that also use AngularJS (but not via @angular/upgrade).
  • elements: For CLI-based examples that also use @angular/elements.
  • getting-started: For the "Getting started" tutorial. Essentially the same as cli but with custom CSS styles.
  • i18n: For CLI-based examples that also use internationalization.
  • schematics: For CLI-based examples that include a library with schematics.
  • service-worker: For CLI-based examples that also use @angular/service-worker.
  • systemjs: For non-CLI legacy examples using SystemJS. This is deprecated and only used in few examples.
  • testing: For CLI-based examples that are related to unit testing.
  • universal: For CLI-based examples that also use @nguniversal/express-engine for SSR.

There are also the following special folders:

  • common: Contains files used in many examples. (See the next section for info on how to exclude common files in certain examples.)

The example-config.json

Each example is identified by an example-config.json configuration file in its root folder. This configuration file indicates what type of boilerplate this example needs and how to test it. For example:

{
  "projectType": "cli"
}

The file is expected to contain a JSON object with zero or more of the following properties:

  • projectType: string: One of the supported project types (see above). Default: "cli"
  • useCommonBoilerplate: boolean: Whether to include common boilerplate from the common/ folder. Default: true
  • "overrideBoilerplate": string[]: A list of paths to boilerplate files that are overridden by custom files in this example. Commonly this is used when a boilerplate file is referenced in a guide and so needs to have doc-regions added.

SystemJS-only properties:

  • build: string: The npm script to run in order to build the example app. Default: "build"
  • run: string: The npm script to run in order to serve the example app (so that e2e test can be run against it). Default "serve:e2e"

CLI-only properties:

  • tests: object[]: An array of objects, each specifying a test command. This can be used to run multiple test commands in series (for example, to run unit and e2e tests). The commands are specified as {cmd: string, args: string[]} and must be in a format that could be passed to Node.js' child_process.spawn(cmd, args). You can use a special {PORT} placeholder, that will be replaced with the port on which the app is served during the actual test. Default:

    [
      {
        "cmd": "yarn",
        "args": [
          "e2e",
          "--configuration=production",
          "--protractor-config=e2e/protractor-bazel.conf.js",
          "--no-webdriver-update",
          "--port={PORT}"
        ]
      }
    ]

An empty example-config.json file is equivalent with {"projectType": "cli"}.

A node_modules/ to share

With all the boilerplate files in place, the only missing piece is the installed packages. For that we have shared/package.json, which contains all the packages needed to run any example type.

Each test is run in a temporary directory where the node_modules folder is symlinked in before the test run.

End-to-end tests

End-to-end infrastructure is slightly different between CLI- and SystemJS-based examples.

For CLI-based examples, create an app.e2e-spec.ts file inside the e2e/ folder. This will be picked up by the default testing command (see the example configuration section above). If you are using a custom test command, make sure e2e specs are picked up (if applicable).

For SystemJS-based examples, create an e2e-spec.ts file inside the example root folder. These apps will be tested with the following command (and an optional outputFile to receive log messages):

yarn protractor [--params.outputFile=path/to/logfile.txt]

example-boilerplate.js

The example-boilerplate.js script that adds boilerplate to examples. It is used by the Bazel build behind the scenes, but can also be invoked via yarn example-list-overrides to print a list of all example files that override boilerplate files.

run-example-e2e.mjs

The run-example-e2e.mjs script will find and run the e2e tests for a single example. Although it only runs e2e tests by default, it can be configured to run any test command (for CLI-based examples) by using the tests property of the example-config.json file. It is named *-e2e for historical reasons, but it is not limited to running e2e tests.

See aio/README.md for the available command-line options.

create-example.js

The create-example.js script creates a new example under the aio/content/examples directory.

You must provide a new name for the example. By default the script will place basic scaffold files into the new example (from shared/example-scaffold). But you can also specify the path to a separate CLI project, from which the script will copy files that would not be considered "boilerplate". See the Boilerplate overview for more information.

create-example-playground.mjs

The create-example-playground.mjs script combines example sources, boilerplate, and shared node_modules deps into git-ignored playground directory content/example-playground/{{EXAMPLE}} that can be used for manual testing. This should be invoked via the yarn script:

yarn example-playground <exampleName> [--local]

The --local flag links in locally-built angular packages as dependencies.

Updating example dependencies

With every major Angular release, we update the examples to be on the latest version. See UPDATING.md for instructions.