travis-web/tests/unit/components/jobs-item-test.js
2016-01-04 13:15:15 +01:00

87 lines
2.8 KiB
JavaScript

import { test, moduleForComponent } from 'ember-qunit';
import Ember from 'ember';
moduleForComponent('jobs-item', 'JobsItemComponent', {
needs: ['helper:format-duration', 'helper:pretty-date', 'component:status-icon']
});
test('it renders', function() {
var attributes, component, job;
attributes = {
id: 10,
state: 'passed',
number: '2',
config: {
rvm: '2.1.2',
jdk: 'openjdk6',
os: 'linux',
env: 'TESTS=unit'
},
duration: 100
};
job = Ember.Object.create(attributes);
component = this.subject({
job: job
});
this.append();
ok(component.$().hasClass('passed'), 'component should have a state class (passed)');
equal(component.$('.job-number').text().trim(), '2', 'job number should be displayed');
equal(component.$('.job-lang').text().trim(), 'JDK: openjdk6 Ruby: 2.1.2', 'langauges list should be displayed');
equal(component.$('.job-env').text().trim(), 'TESTS=unit', 'env should be displayed');
ok(component.$('.job-os').hasClass('linux'), 'OS class should be added for OS icon');
return equal(component.$('.job-duration').text().trim(), '1 min 40 sec', 'duration should be displayed');
});
test('outputs info on not set properties', function() {
var component, job;
job = Ember.Object.create();
component = this.subject({
job: job
});
this.append();
ok(component.$('.job-env').text().match(/no environment variables set/), 'a message for no env vars should be displayed');
return ok(component.$('.job-lang').text().match(/no language set/), 'a message about no language being set should be displayed');
});
test('when env is not set, gemfile is displayed in the env section', function() {
var attributes, component, job;
attributes = {
id: 10,
state: 'passed',
number: '2',
config: {
rvm: '2.1.2',
gemfile: 'foo/Gemfile'
},
duration: 100
};
job = Ember.Object.create(attributes);
component = this.subject({
job: job
});
this.append();
equal(component.$('.job-lang .label-align').text().trim(), 'Ruby: 2.1.2', 'langauges list should be displayed');
return equal(component.$('.job-env .label-align').text().trim(), 'Gemfile: foo/Gemfile', 'env should be displayed');
});
test('when env is set, gemfile is displayed in the language section', function() {
var attributes, component, job;
attributes = {
id: 10,
state: 'passed',
number: '2',
config: {
rvm: '2.1.2',
gemfile: 'foo/Gemfile',
env: 'FOO=bar'
},
duration: 100
};
job = Ember.Object.create(attributes);
component = this.subject({
job: job
});
this.append();
equal(component.$('.job-lang .label-align').text().trim(), 'Ruby: 2.1.2 Gemfile: foo/Gemfile', 'Gemfile should be displayed in languages section');
return equal(component.$('.job-env .label-align').text().trim(), 'FOO=bar', 'env should be displayed');
});