Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

polymer unit test mocking dependencies

Im just starting on polymer. Im trying to unit test a custom element that has dependencies and I would like to fake/mock these out. I've found Scott Miles recommendation on how to mock the core-ajax implementation. I thought I could follow that pattern easily but this only works as long as my element does not import the about to be mocked (core-ajax in this case) element. If it does import it, then when the test tries to run I get

'Uncaught NotSupportedError: Failed to execute 'registerElement' on 'Document': Registration failed for type 'core-ajax'. A type with that name is already registered.'

If I could do something like document.unregister the core-ajax element and import it again in my test, Id be a much happier dev!!! Polymer is awesome but if I can not unit test it, then it presents major risks (at least when building an app that will need to be maintained/changed)

How are you guys working around this? I've been digging into Polymer and PolymerLab elements repo and most of them lack tests. So far I;ve not found much reference on how to do it.

Thanks for the help!

Santiago

Scotts' recommendation was:

Instead of importing core-ajax/core-ajax.html, create your own core-ajax element.

<polymer-element name="core-ajax" attributes="response">
<script>
  Polymer('core-ajax', {
    attached: function() {
      this.response = ['a', 'b', 'c'];
    }
 });
</script>
</polymer-element>

Obviously, this is just an example, the actual implementation depends on the desired mocking behavior.

This is just one way to solve it, there are many others. I'm interested to hear what you find (in)convenient.

like image 206
sesteva Avatar asked Sep 29 '14 03:09

sesteva


People also ask

How do you use mocking in unit testing?

Mocking in Unit Tests One of the key components of writing unit tests is to remove the dependencies your system has and replacing it with an implementation you control. The most common method people use as the replacement for the dependency is a mock, and mocking frameworks exist to help make this process easier.

What is private dependency in unit testing?

Private dependency is a dependency that is not shared. A typical example of a shared dependency is a static mutable field — a change to such a field is visible across all unit tests running within the same process. Another typical example of a shared dependency is the application database.

How to stub out external dependencies in unit tests?

To control your testing environment and hermetically test your application code, can stub out external dependencies in Unit tests using a helpful library called mockito. The aim of this getting started guide is to introduce the Dart package mockito. In addition, this guide will show how to use mockito functionality to create stubs of dependencies.

Does providing all dependencies slow down the execution of test cases?

But providing all the dependencies may slow down your execution of test cases of applications as you also will need to inject their sub-dependencies too. For example, let's suppose that we are writing the Unit test for XyzComponent, and the template for XyzComponent is following,


1 Answers

This question is a little old. Figured I'd provide an update since this is a pretty common situation.

Polymer CLI is the recommended approach for unit testing Polymer elements. The underlying library that it uses for testing is called web-component-tester (WCT). WCT has support for stub elements. Basically, if one of your tests relies on another element to return data, you can create a stub of that element that always returns consistent data.

JS in the unit test code for specifying the stub element:

setup(function() {
  replace('paper-button').with('fake-paper-button');
});

Element to be tested:

<dom-module id='x-el'>
  <template>
    <paper-button id="pb">button</paper-button>
  </template>
</dom-module>

At test runtime, the content template would be stamped out as:

<dom-module id='x-el'>
  <template>
    <fake-paper-button id="pb">button</fake-paper-button>
  </template>
</dom-module>

https://www.polymer-project.org/1.0/docs/tools/tests#create-stub-elements

like image 64
Kayce Basques Avatar answered Oct 05 '22 16:10

Kayce Basques