npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cyclejs-mock

v0.1.1

Published

Utility for testing applications based on CycleJS framework.

Downloads

6

Readme

cyclejs-mock

Utility for testing applications based on Cycle.js framework.

Short API documentation

Module cyclejs-mock returns just one functions in which you can wrap your test definition and get access to some useful utils. They are heavily based on Rx.Testing module, so its documentation may be worth to read too.

  import inject from 'cyclejs-mock';
  import { Observable } from 'rx';
  
  function functionToTest(a$, b$) {
    return Observable.combineLatest(a$, b$,
      (a, b) => a + b)
    );
  }
  
  it('should add numbers from input',
  inject((createObservable, onNext, getValues) => {
    let a$ = createObservable(onNext(100, 1), onNext(200, 2));
    let b$ = createObservable(onNext(150, 3), onNext(250, 4));
    
    let sum$ = functionToTest(a$, b$);
    
    assert.deepEqual(
      getValues(sum$),
      [ 4, 5, 6 ]
    );
  });

createObservable(...args)

Creates a hot observable using the specified timestamped notification messages. It accepts any number of values created by onNext, onError and onCompleted functions;

  let a$ = createObservable(
    onNext(100, 1),
    onNext(200, 2),
    onCompleted(500)
  );

Code above creates observable that emits value 1 at time 100, value 2 at time 200 and completes at time 500.

onNext(ticks, value)

It's just Rx.ReactiveTest.onNext method. It accepts number of VirtualTime ticks after that a value will be emitted and value itself.

onCompleted(ticks)

It's just Rx.ReactiveTest.onCompleted method. It accepts number of VirtualTime ticks after that a completed signal will be emitted.

onError(ticks, exception|predicate)

It's just Rx.ReactiveTest.onError method. It accepts number of VirtualTime ticks after that an exception will be emitted and exception itself. If you pass function as a second argument, it will be used by custom assertion function.

  import chai from 'chai';
  import equalCollection from 'chai-equal-collection';

  chai.use(equalCollection(Rx.internals.isEqual));

  let a$ = createObservable(
    onNext(100, 1),
    onError(200, new Error('bum!'))
  );
  
  assert.equalCollection(
    getMessages(a$), [
      onNext(100, 1),
      onError(200, (error) => error.message === 'bum!'))
    ]
  );

getMessages(observable)

Starts the observable and returns collection of emitted values and signals. It uses Rx.TestScheduler.startWithTiming method with following time values: 1, 10, 100000 (so you can assume that it starts on the beginning of the world and lives forever).

  const isEqual = Rx.internals.isEqual;
  const err = new Error('bum!');

  let a$ = createObservable(
    onNext(100, 1),
    onError(200, err),
    onCompleted(1000)
  );
  
  let messages = getMessages(a$);
  
  isEqual(messages[0], onNext(100, 1));
  isEqual(messages[1], onError(200, err));
  isEqual(messages[2], onCompleted(1000));

getValues(observable)

It's similar to getMessages, but returns array of values emitted by observable.

  const err = new Error('bum!');

  let a$ = createObservable(
    onNext(100, 1),
    onError(200, err),
    onCompleted(1000)
  );
  
  let values = getValues(a$);
  
  assert.equal(values[0], 1);
  assert.equal(values[1], null);  // null for onError and onCompleted
  assert.equal(values[2], null);

render(vdom)

Turns out VirtualDOM to real one.

  let vdom = h('div', { className: 'my-class', 'some value');
  
  let dom = render(vdom);
  
  assert.equal(dom.outerHTML, '<div class="my-class">some value</div>');

You can use it to render your VirtualDOM stream with help of getValues.

  let vdom$ = createObservable(
    onNext(100, h('div', { className: 'my-class', 'some value')),
    onNext(200, h('div', { className: 'your-class', 'some value')),
    onNext(300, h('div', { className: 'your-class', 'different value')),
    onNext(400, h('span', { className: 'your-class', 'different value'))
  );
  
  let doms = getValues(
    vdom$.map(render)
  );
  
  assert.equal(doms[0].outerHTML, '<div class="my-class">some value</div>');
  assert.equal(doms[1].outerHTML, '<div class="your-class">some value</div>');
  assert.equal(doms[2].outerHTML, '<div class="your-class">different value</div>');
  assert.equal(doms[3].outerHTML, '<span class="your-class">different value</span>');

callWithObservables(fn, argsDefinitionObj)

Calls function with observables defined in passed object. You can provide observable or just a value that should be emitted. If function has parameter with name that can't be found in definition object, empty observable is created.

  function functionToTest(a$, b$, c$) {
    return Rx.Observable.combineLatest(a$, b$,
      (a, b) => a + b)
    ).merge(c$);
  }
  
  let sum$ = callWithObservables(functionToTest, {
    a$: 1,
    b$: createObservable(
      onNext(100, 3),
      onNext(200, 4)
    )
  });

  assert.deepEqual(
    getValues(sum),
    [ 4, 5 ]
  );

mockInteractions(definitionObj)

Creates mock of interactions object based on provided definition. You can define interaction with element using key objects in format selector@event, ex. .button@click. Pass observable to use exact value in mock or just any value to create observable emitting it. If not defined interaction is requested, empty observable is created.

  let interactions = mockInteractions({
    '.button@click': createObservable(
      onNext(100, { target: { 'data-id': 'button1' } }),
      onNext(200, { target: { 'data-id': 'button2' } })
    ),
    '#field@input': 'pasted text'
  });
  
  let clicksOnButton$ = interactions.choose('.button', 'click');
  let inputsOnField$ = interactions.choose('#field', 'input');
  let keyupsOnBody$ = interactions.choose('body', 'keyup');
  
  assert.deepEqual(
    getValues(clicksOnButton$),
    [ { target: { 'data-id': 'button1' } }, { target: { 'data-id': 'button2' } } ]
  );
  assert.deepEqual(
    getValues(inputsOnField$),
    [ 'pasted text' ]
  );
  assert.deepEqual(
    getValues(keyupsOnBody$),
    [ ]
  );