GithubHelp home page GithubHelp logo

isabella232 / reactor-sandbox Goto Github PK

View Code? Open in Web Editor NEW

This project forked from adobe/reactor-sandbox

0.0 0.0 0.0 1.9 MB

Tasks for creating a sandbox for manually testing Adobe Experience Platform Launch extensions.

License: Apache License 2.0

JavaScript 86.61% HTML 10.09% CSS 3.30%

reactor-sandbox's Introduction

Launch Extension Sandbox

npm (scoped)

Launch, by Adobe, is a next-generation tag management solution enabling simplified deployment of marketing technologies. For more information regarding Launch, please visit our product website.

This project provides a sandbox in which you can manually test your Launch extension. You can test both (1) your views that will eventually appear in the Launch application and (2) your library logic that will eventually run on the user's website.

For more information about developing an extension for Launch, please visit our extension development guide.

Usage

Running the Sandbox

Before running the sandbox, you must first have Node.js installed on your computer. Your npm version (npm comes bundled with Node.js) will need to be at least 5.2.0. You can check the installed version by running the following command from a command line:

npm -v

Once Node.js is installed, run the sandbox by executing the following command from the command line within your project's directory:

npx @adobe/reactor-sandbox

A server will be started at http://localhost:3000 (HTTP) and https://localhost:4000 (HTTPS). If you navigate to one of addresses in your browser (you may have to accept a security certificate if you use the HTTPS server), you will see the View Sandbox which allows you to test your views. You'll need to have previously created a view in your extension for it to show up in the sandbox. You can switch between views you would like to test using the controls toward the top of the page.

You may also click on the "Go to library sandbox" button at the top-right of the page to navigate to the library sandbox where you can test your library logic. See Configuring the Sandbox for how to configure the library sandbox for proper testing.

Once this is in place, you may then run the sandbox by executing the command npm run sandbox from the command line.

Configuring the Sandbox

Web Extensions can also test the library logic inside the sandbox. To configure the Library Sandbox portion, execute the following command from the command line within your project's directory:

npx @adobe/reactor-sandbox init

This will generate a directory within your project named .sandbox that contains two files you may edit to configure the sandbox:

  • container.js When Launch publishes a library, it consists of two parts: (1) a data structure that stores information about saved rules, data elements, and extension configuration and (2) an engine to operate on such a data structure. container.js is the data structure (not the engine) that you may modify to simulate saved rules, data elements, and extension configuration. This template will be used to produce a complete container.js (JavaScript from your extension will be added) which will be used in tandem with the Turbine engine inside the sandbox. We have tried to provide inline comments on how to modify container.js, but if you need further help, please let the Launch team know and we can help you out.
  • libSandbox.html includes some simple HTML along with script tags to load a complete container.js and the Turbine engine. libSandbox.html can be modified to manually test whatever you would like. For example, if you'd like to test that your brand new "focus" event type is working as desired, you can add a text input to the libSandbox.html to ensure your dummy rule fires when a form element receives focus.

Mobile extensions don't have a Library Sandbox portion. Running npx @adobe/reactor-sandbox init from inside a mobile extension, will show an error.

You are welcome to commit .sandbox to your version control repository.

Installing as a Dependency

If you find yourself using the the sandbox tool frequently, you may wish to install it as a dependency in your project. This will allow the sandbox tool to run more quickly and provide more control over when you upgrade to newer versions of the sandbox.

If you do not yet have a package.json in your project's directory, you will need to generate one by running the following command from the command line within your project's directory:

npm init

You will need to provide the information requested on the screen. The values you provide are not particularly important and will not affect how your extension operates. After this process is complete, you should have a file called package.json inside your directory.

Once you have a package.json, you can install the sandbox as a dependency by running the following command from the command line within your project's directory:

npm i -D @adobe/reactor-sandbox

At this point, you can continue running the sandbox as outlined above.

Advanced Integration with Node Scripts

For advanced users who need greater control of the sandbox from node-based build tools, you also have the option of importing the sandbox tool into your scripts and controlling it programmatically.

After installing the sandbox as a dependency, you may use it from your node scripts as follows:

const sandbox = require("@adobe/reactor-sandbox");
sandbox.run();

The sandbox module provides the following methods:

run - Runs the sandbox. A promise will be returned that will be resolved once the server is ready.

init - Initializes sandbox configuration files. A promise will be returned that will be resolved once the files have been generated.

Using the Sandbox for Automated Testing

While the sandbox is primarily intended for manually testing an extension, it can also come in handy for automated tests. If you would like to test your extension's user interface using an end-to-end testing tool like TestCafe or Cypress, the view sandbox provides the ability to do so.

Once the sandbox has been started and the view sandbox displayed in a browser, a global method named loadExtensionView is exposed and can be used to load an extension view programmatically as follows:

window.loadExtensionView({
  viewPath: "myView.html",
  initInfo: {
    settings: {
      foo: "bar"
    }
  }
});

This will load the extension view into the iframe in the view sandbox and will then call the init method that your extension has registered with the extension bridge. The loadExtensionView method supports the following options:

  • viewPath (required) The view path to the extension view you wish to load. It must match the viewPath property specified for the view in your extension's extension.json file.
  • initInfo (optional) The info object that will be passed to the init method your extension has registered with the extension bridge.
  • openCodeEditor (optional) A mock function that will be called when your extension calls window.extensionBridge.openCodeEditor.
  • openRegexTester (optional) A mock function that will be called when your extension calls window.extensionBridge.openRegexTester.
  • openDataElementSelector (optional) A mock function that will be called when your extension calls window.extensionBridge.openDataElementSelector.

The loadExtensionView method will return a promise that, once the view is loaded and initialized, will be resolved with an object containing the following methods:

  • init Calling this method will call the init method your extension has registered with the extension bridge. It returns a promise that will be resolved once the extension view has handled the init call.
  • getSettings Calling this method will call the getSettings method your extension has registered with the extension bridge. It returns a promise that will be resolved with the settings returned from your extension's getSettings method.
  • validate Calling this method will call the validate method your extension has registered with the extension bridge. It returns a promise that will be resolved with the validation result boolean returned from your extension's validate method.

As an example, I might want to load an extension view, use a testing tool to mimic user behavior in the extension view, then retrieve the settings and assert that they are as expected. This might look as follows:

// Load the extension view.
const extensionView = await window.loadExtensionView({
  viewPath: "myView.html"
});

// At this point, use the testing tool to mimic user behavior
// within the extension view.
  
// Retrieve settings.
const settings = await extensionView.getSettings();

// Assert that settings are as expected.
expect(settings).toEqual({
  foo: "bar"
});

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

To get started:

  1. Install node.js.
  2. Clone the repository.
  3. After navigating into the project directory, install project dependencies by running npm install.

To manually test your changes, first run the following command from the sandbox tool directory:

npm link

Then, in a directory containing an extension (any extension you would like to use for testing), run the following command:

npx @adobe/reactor-sandbox

Npx will execute the sandbox tool using your locally linked code rather than the code published on the public npm repository.

Scripts

To ensure your code meets our linting standards, run the following command:

npm run lint

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.

reactor-sandbox's People

Contributors

aaronius avatar dompuiu avatar haktober avatar jhicken avatar markhicken avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.