This page explains the initial setup, development workflow, and test execution for OpenUI5.
OpenUI5 content is developed in an environment based on Node.js. UI5 Tooling is used as development server and build tool.
The basic setup allows you to start a server for the OpenUI5 project in an easy way:
- Install Node.js. This also includes npm, the node package manager.
- Clone the OpenUI5 Git repository. You can download and install Git from git-scm.com.
git clone https://github.com/SAP/openui5.git
- Install all npm dependencies. Optionally, you can also use Yarn for this, see Advanced Setup.
cd openui5
npm install
- Start the server
npm start
- Open the TestSuite at http://localhost:8080/test-resources/testsuite/testframe.html
- You're done!
Tip: Alternatively you can let your browser open the TestSuite URL automatically by executing npm run testsuite
The OpenUI5 TestSuite server can be configured using environment variables. For example, to allow remote access to the server, that is, from an interface other than your computer's loopback/localhost, you can configure the server as follows:
OPENUI5_SRV_ACC_RMT_CON=true npm start
OPENUI5_SRV_OPEN=index.html
OPENUI5_SRV_ACC_RMT_CON=true
OPENUI5_SRV_PORT=9090
The basic setup described above uses a custom setup focused on starting the UI5 Server for the OpenUI5 TestSuite project in an easy way.
The advanced setup allows you to use the UI5 CLI and all of its features. The use of Yarn is required in this setup, as npm can't handle workspaces yet, see What's the thing with Yarn in the FAQ.
You need to use the advanced setup if you plan to do any of the following:
- Build an OpenUI5 project.
- Build the OpenUI5 SDK (Demo Kit).
- Serve a project with HTTPS or HTTP/2.
- Use any of the other UI5 CLI features and parameters.
- Install the UI5 CLI globally, see UI5 Tooling: Installing the UI5 CLI.
- Install Yarn from here (also see FAQ: What's the thing with Yarn?)
- In the OpenUI5 repository root directory, install all dependencies using Yarn. This also links all OpenUI5 libraries between each other.
yarn
- Navigate into the TestSuite project and start the UI5 server.
cd src/testsuite
ui5 serve --open index.html
Now you can use the UI5 CLI in any of your local OpenUI5 libraries. Check the UI5 CLI documentation for details.
Whenever you make changes to your OpenUI5 repository's node_modules
directory (e.g. by executing npm install
), you may need to recreate the links between the OpenUI5 libraries. You can always do this by executing yarn
in the OpenUI5 root directory. Also see FAQ: What's the thing with Yarn?
You can continue to use the legacy Grunt-based setup. However, the setups described above are recommended for working with the OpenUI5 repository.
To use the legacy setup, execute npm run start-grunt
. Note that in the past this was the default npm start
behavior.
For details, see legacy Grunt development environment documentation.
-
/testsuite
Path-prefix:Standard setup: http://localhost:8080/test-resources/testsuite/testframe.html
Legacy setup http://localhost:8080/testsuite/test-resources/testsuite/testframe.html
Just modify any source file and reload your browser. Now that's simple, isn't it?
This build-free development process does not feature optimized runtime performance. For example, there are many small requests, which would not be acceptable for remote connections. But it is the most convenient way to modify the OpenUI5 sources. Under the hood there are mainly two mechanisms applied that adapt the sources:
- The Git repository path contains a folder named like the respective control library (e.g. "sap.m"), which is omitted at runtime. The UI5 CLI server is mapping the locations.
- The CSS files are transformed (server-side) by the LESS pre-processor during the first request after a CSS file has been modified. This includes mirroring for right-to-left support.
When working on UI5 applications or libraries that already make use of the @openui5
-npm packages like the OpenUI5 Sample App, you can link your local OpenUI5 repository into that project. This allows you to make changes to the project itself as well as to the OpenUI5 libraries simultaneously and test them immediately.
A detailed step-by-step guide on how to achieve such a setup with the OpenUI5 sample app can be found here.
UI5 Tooling is used to build a production-ready version of OpenUI5. Every library needs to be built individually.
Usage:
ui5 build
The build is responsible for the following tasks:
- Creation of the bundled library.css and library-RTL.css file for all available themes
- Minification of CSS
- Minification of JavaScript
- Bundling the JavaScript modules of the libraries into a single library-preload.js file
- Bundling of the most important UI5 Core modules into sap-ui-core.js
If you encounter errors like the one below, execute yarn
in the OpenUI5 root directory. There may be new build tools required which need to be downloaded first.
Error: Cannot find module 'xyz'
Since version 1.2.2. the UI5 CLI supports a new mode jsdoc
for the ui5 build
command to execute a JSDoc build for your project.
Usage:
ui5 build jsdoc
By default, the jsdoc
command generates an API summary file api.json
for your project.
v12.x
. If you are facing issues, you may try using Node.js v10.x
.
Before you start building the SDK, make sure you have followed the advanced setup of your OpenUI5 development environment at first.
Execute the build:
cd src/testsuite
ui5 build jsdoc --all
With the --all
option the JSDoc build generates an api.json
of all project dependencies. This can then be used to launch the Demo Kit and find the full API reference for all OpenUI5 libraries.
v12.x
. If you are facing issues, you may try using Node.js v10.x
.
-
After you have run the
ui5 build jsdoc --all
command in the testsuite project, adist
folder is created. -
Start an HTTP server for the
dist
folder
npm run serve-sdk
- Launch the Demo Kit at http://localhost:8000/documentation.html
Within the testsuite project:
- You can build and serve the SDK using this command:
npm run sdk
- You can update an already built SDK using this command:
npm run update-sdk
(followed bynpm run serve-sdk
to start the server if necessary)
All UI5 code must conform to a certain ruleset which is checked with ESLint (http://eslint.org/).
To run an ESLint check, navigate to the root directory of the repository and execute:
npm run lint
Test can be executed automatically with the Karma Test-Runner.
To run tests of a library, the --lib
needs to be passed.
The <library-name>
corresponds to the folder within ./src/
, e.g. sap.m
.
npm run karma -- --lib=<library-name>
This executes all tests of that library in watch mode, which will automatically re-run tests in case of file changes.
Example: npm run karma -- --lib=sap.m
Instead of executing all tests of a library, it is also possible to only run one test or testsuite.
In order to find the URL, you can open http://localhost:8080/test.html and search for the test.
Copy the URL and remove the origin part (http://localhost:8080/), so that it begins with resources
or test-resources
.
npm run karma -- --lib=<library-name> --ui5.testpage="<testpage-url>"
Note: The corresponding --lib
option needs to still be provided accordingly
Example:
npm run karma -- --lib=sap.m --ui5.testpage="resources/sap/ui/test/starter/Test.qunit.html?testsuite=test-resources/sap/m/qunit/testsuite.mobile.qunit&test=Button"
Coverage reporting can be enabled by additionally passing the --coverage
option
npm run karma -- --lib=<library-name> --coverage
The continuous integration mode can be enabled by additionally passing the --ci
option.
This will enable Chrome headless and disable watch mode so the execution stops after all tests have been executed.
npm run karma -- --lib=<library-name> --ci
The options --ci
and --coverage
can be combined.