Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-cli-odyssey

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-odyssey

Random walks for acceptance tests.

  • 0.2.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ember-cli-odyssey

Random walks for acceptance tests.

Installation

ember install ember-cli-odyssey

Usage

In your acceptance test import RandomWalk:

import RandomWalk from 'ember-cli-odyssey';

Then setup your custom steps for an odyssey through the app (The sample uses ember-cli-page-object):

import rootPage from '../../pages/root';
import loginPage from '../../pages/auth/login';
import profilePage from '../../pages/auth/profile';

test('odyssey through the app', async function (assert) {
  // define all things that are needed for the steps, e.g. email, password...

  const randomWalk = new RandomWalk(this, assert);

  randomWalk.addStep('visitRootPage', {
    isApplicable: () => currentURL() !== '/',
    async execute() {
      await rootPage.visit();
      assert.equal(currentURL(), '/', 'I can visit the root page');
  });

  randomWalk.addStep('visitLoginPage', {
    isApplicable: () => currentURL() === '/',
    async execute: () => await rootPage.clickLogin(),
  });

  randomWalk.addStep('login', {
    isApplicable: () => currentURL() === '/login',
    async execute: () => await loginPage.login(email, password),
  });

  randomWalk.addStep('visitUserProfile', {
    isApplicable: () => currentURL() !== '/login',
    async execute() {
      await profilePage.visit();
      assert.equal(currentURL(), '/profile', 'I can visit the profile page');
    },
  });

  randomWalk.addStep('editUserProfile', {
    isApplicable: () => currentURL() === '/profile',
    async execute() {
      await profilePage
        .name('Howard Hamster')
        .username('emberman')
        .submit();

      assert.equal(currentURL(), '/profile', 'After editing my profile I stay on the profile page');
      assert.equal(profilePage.name(), 'Howard Hamster', 'My name got changed');
      assert.equal(profilePage.username(), 'emberman', 'My username got changed');
    },
  });

  // Doing the random walk

  randomWalk.setup();

  // do a few deterministic steps
  await randomWalk.execute('visitLoginPage');
  await randomWalk.execute('login');

  // and then 20 random steps
  await randomWalk.doSteps(20);
});

Contributing

Installation

  • git clone <repository-url>
  • cd ember-cli-odyssey
  • npm install

Linting

  • npm run lint:js
  • npm run lint:js -- --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • npm test – Runs ember try:each to test your addon against multiple Ember versions

Running the dummy application

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 05 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc