This package has been deprecated

Author message:

karma-openui5 has been renamed to karma-ui5: https://github.com/SAP/karma-ui5#about

karma-openui5

0.2.3 • Public • Published

OpenUI5

NPM Version

karma-openui5

Adapter for OpenUI5/SAPUI5 UI framework. This adapter loads OpenUI5/SAPUI5 from the specified location and makes it available for the tests to run in karma afterwards.

Installation

The easiest way is to add karma-openui5 as a devDependency in your package.json.

{
  "devDependencies": {
    "karma-openui5": "~0.2"
  }
}

Information on how to install karma can be found here.

Configuration

The following code shows the available configuration options.

For the client OpenUI5 configuration you can create an object using any of the options described in the documentation.

To automatically load test modules (via sap.ui.require), the tests config can be set to an array of module names. When using this config, the relevant files must not be included via the files config of Karma.
This is very similar to how RequireJS works with Karma, but without the need for a custom test-main.js file.

For the mockserver config you can pass an object like you would do it for the sap.ui.core.util.MockServer.config function. The rootUri and the metadataURL are required properties if you use the mock server. You can also pass mockdata settings like you would do it for the simulate function of the MockServer. The MockServer needs to be enabled explicitly by settings the useMockServer option.

// karma.conf.js
module.exports = function(config) {
  config.set({
    frameworks: ['openui5'],
 
    openui5: {
      path: 'http://path/to/sap-ui-core.js',
      useMockServer: false
    },
 
    client: {
      openui5: {
        config: {
          theme: 'sap_belize'
        },
        tests: [
          'name/of/test/module/to/be/loaded',
          'other/name/of/test/module/to/be/loaded'
        ],
        mockserver: {
          config: {
            autoRespond: true
          },
          rootUri: '/my/service/',
          metadataURL: '/base/test/mock.xml',
          mockdataSettings: {
 
          }
        }
      }
    }
  });
};

Application constrains

QUnit dependency

Do no require QUnit resources from within the tests. Karma loads its own versions of them in order hook in its reporting at the right places.

Therefore rather load those resources in the non-karma specific test runner HTML pages. Like this:

    <script src="../../resources/sap/ui/thirdparty/qunit.js"></script> 
    <script src="../../resources/sap/ui/qunit/qunit-css.js"></script> 

OPA5: Component containers instead of iFrames

Only relevant when using Istanbul to create test coverage

Istanbul has problems collecting code coverage results from within iFrames. To gather code coverage from OPA5 tests you need to execute them inside of component containers instead of iFrames. This will also speed up the execution time of your OPA5 tests.

Notice: With component containers you will loose the isolation of your single tests. Also, your applications index.html won't be executed anymore (as only the applications Component.js will be needed).

In your tests, replace iStartMyAppInAFrame() withiStartMyUIComponent() and iTeardownMyAppFrame() with iTeardownMyUIComponent().

For more information see the API reference of sap.ui.test.Opa5

License

(c) Copyright 2017 SAP SE or an SAP affiliate company

Licensed under the Apache License, Version 2.0 - see LICENSE.

Dependents (6)

Package Sidebar

Install

npm i karma-openui5

Weekly Downloads

4,673

Version

0.2.3

License

Apache-2.0

Last publish

Collaborators

  • flovogt
  • matz3
  • randombyte
  • ui5-bot