Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
ember-test-selectors
Advanced tools
This Ember CLI Addon removes all HTML 5 data attributes starting with
data-test-
in the production
environment. That allows using data
attributes as element selectors in integration and acceptance tests without
polluting the markup that is delivered to the end user.
ember install ember-test-selectors
data
attributes as test selectors?Integration and acceptance tests usually interact with and assert on the presence of certain elements in the markup that an application renders. These elements are identified using CSS selectors. Most projects use one of three approaches for CSS selectors in tests:
This approach simply selects elements by their position in the rendered HTML. For the following template:
<article>
<h1>Post Title</h1>
<p>Post Body…</p<>
</article>
one might select the post's title with the selector article h1
. Of course
this breaks when changing the <h1>
to a <h2>
while the functionality being
tested is probably not affected by that change.
This approach selects elements by CSS classes. For the following template:
<article>
<h1 class="post-title">{{post.title}}</h1>
<p>{{post.body}}</p>
</article>
one might select the post title with the selector .post-title
. This of course
breaks when the CSS class is changed or renamed, although that would only be a
visual change which shouldn't affect the tests at all.
Many projects use special CSS classes that are only used for testing to
overcome this problem like js-post-title
. While that approach is definitely
more stable it is often hard to maintain. Also it is very hard to encode
additional information in these CSS classes like e.g. the post's id.
data
attributesThis approach uses HTML 5 data
attributes to select elements. For the
following template:
<article>
<h1 data-test-post-title>{{post.title}}</h1>
<p>{{post.body}}</p>
</article>
one would select the post's title with the selector
*[data-test-post-title]
. While the selector is arguably a bit longer this
approach clearly separates the test selectors from the rest of the markup and
is resilient to change as it would simply be applied to the element rendering
the post's title, regardless of the HTML structure, CSS classes etc. Also it
allows to encode more data in the markup like e.g. the post's id:
<article>
<h1 data-test-post-title data-test-resource-id="{{post.id}}">{{post.title}}</h1>
<p>{{post.body}}</p>
</article>
ember-test-selectors
makes sure to remove all these data-test-*
attributes in the
production
environment so that users will have perfectly clean HTML
delivered:
<article>
<h1>My great post</h1>
<p>Bla bla…</p>
</article>
To modify the default configuration, place a block called ember-test-selectors
in your ember-cli-build.js
file.
environments
Defines the environments in which you want the test selectors to be removed.
By default, selectors are only removed in the production
environment. You
might also want to remove them in other staging environments for testing.
var app = new EmberApp({
'ember-test-selectors': {
environments: ['production', 'staging']
}
});
ember-test-selectors
comes with a test helper that can be used in acceptance
and integration tests:
testSelector('post-title')
: Returns a selector [data-test-post-title]
testSelector('resource-id', '2')
: Returns a selector [data-test-resource-id="2"]
The test helpers can be imported from the helpers/ember-test-selectors
module:
import testSelector from '<app-name>/tests/helpers/ember-test-selectors';
find(testSelector('post-title')) // => find('[data-test-post-title]')
find(testSelector('selector', 'post-title')) // => find('[data-test-selector="post-title"]')
this.$(testSelector('post-title')).click() // => this.$('[data-test-post-title]').click()
this.$(testSelector('selector', 'post-title')).click() // => this.$('[data-test-selector="post-title"]').click()
ember-test-selectors is developed by and © simplabs GmbH and contributors. It is released under the MIT License.
ember-test-selectors is not an official part of Ember.js and is not maintained by the Ember.js Core Team.
0.0.5 (2016-11-23)
value
argument for absence, not falsiness.. (@chriskrycho)FAQs
Enabling better Test selectors in Ember.js applications.
The npm package ember-test-selectors receives a total of 41,338 weekly downloads. As such, ember-test-selectors popularity was classified as popular.
We found that ember-test-selectors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.