Remove append() test deprecations

Replacing with `render` to appease the test suite gods.
This commit is contained in:
Curtis Ekstrom 2016-02-04 00:06:45 +01:00
parent 4443dc9ddd
commit 9d429966d0
15 changed files with 23 additions and 24 deletions

View File

@ -27,6 +27,5 @@ window.deprecationWorkflow.config = {
{ handler: "silence", matchMessage: "Using `ApplicationInstance.container.lookup` is deprecated. Please use `ApplicationInstance.lookup` instead." },
{ handler: "silence", matchMessage: "this.resource() is deprecated. Use this.route('name', { resetNamespace: true }, function () {}) instead." },
{ handler: "silence", matchMessage: new RegExp("the component:.*? test module is implicitly running in unit test mode, which will change to integration test mode by default in an upcoming version of ember-test-helpers. Add `unit: true` or a `needs:[]` list to explicitly opt in to unit test mode.") },
{ handler: "silence", matchMessage: "this.append() is deprecated. Please use this.render() or this.$() instead." }
]
};

View File

@ -45,7 +45,7 @@ test('it renders', function() {
component = this.subject({
build: attributes
});
this.append();
this.render();
ok(component.$().hasClass('passed'), 'component should have state class (passed)');
equal(component.$('.row-name .label-align').text().trim(), 'master', 'should display correct branch name');
equal(component.$('.row-request .label-align').text().trim(), '#1 passed', 'should display build number and state');

View File

@ -9,7 +9,7 @@ test('it shows cancel button if canCancel is true', function() {
component = this.subject({
canCancel: true
});
this.append();
this.render();
return ok(component.$('a[title="Cancel Build"]').length, 'cancel link should be visible');
});
@ -18,7 +18,7 @@ test('it shows restart button if canRestart is true', function() {
component = this.subject({
canRestart: true
});
this.append();
this.render();
return ok(component.$('a[title="Restart Build"]').length, 'restart link should be visible');
});

View File

@ -26,7 +26,7 @@ test('it renders', function(assert) {
};
component = this.subject();
component.set('build', attributes);
this.append();
this.render();
ok(component.$().hasClass('passed'), 'component has right status class');
equal(component.$('.row-branch a').text().trim(), 'foobarbranch', 'component renders branch if event is push');
return equal(component.$('a[title="See the commit on GitHub"]').attr('href'), 'https://github.com/foo/bar/commit/a5e8093098f9c0fb46856b753fb8943c7fbf26f3', 'component generates right commit link');

View File

@ -16,7 +16,7 @@ test('it renders', function() {
component = this.subject({
cache: attributes
});
this.append();
this.render();
ok(component.$().hasClass('push'), 'component should have a type class (push)');
equal(component.$('.row-item:first-child .label-align').text().trim(), 'master', 'branch name should be displayed');
return equal(component.$('.row-item:nth-child(3) .label-align').text().trim(), '1.00MB', 'size should be displayed');

View File

@ -18,7 +18,7 @@ test('it renders', function() {
component = this.subject({
hook: attributes
});
this.append();
this.render();
ok(component.$().hasClass('active'), 'component should have active class');
ok(component.$('.switch--icon').hasClass('active'), 'switch should have active class');
return equal(component.$('.profile-repo span').text().trim(), 'A foo repo', 'repo description should be displayed');

View File

@ -10,7 +10,7 @@ test('it shows cancel button if canCancel is true', function() {
component = this.subject({
canCancel: true
});
this.append();
this.render();
return ok(component.$('a[title="Cancel job"]').length, 'cancel link should be visible');
});
@ -19,7 +19,7 @@ test('it shows restart button if canRestart is true', function() {
component = this.subject({
canRestart: true
});
this.append();
this.render();
return ok(component.$('a[title="Restart job"]').length, 'restart link should be visible');
});

View File

@ -22,7 +22,7 @@ test('it renders', function() {
component = this.subject({
job: job
});
this.append();
this.render();
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');
@ -37,7 +37,7 @@ test('outputs info on not set properties', function() {
component = this.subject({
job: job
});
this.append();
this.render();
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');
});
@ -58,7 +58,7 @@ test('when env is not set, gemfile is displayed in the env section', function()
component = this.subject({
job: job
});
this.append();
this.render();
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');
});
@ -80,7 +80,7 @@ test('when env is set, gemfile is displayed in the language section', function()
component = this.subject({
job: job
});
this.append();
this.render();
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');
});

View File

@ -20,7 +20,7 @@ test('it renders a list of jobs', function() {
jobs: jobs,
required: true
});
this.append();
this.render();
equal(component.$('.section-title').text().trim(), 'Build Jobs');
equal(component.$('.jobs-item').length, 2, 'there should be 2 job items');
ok(component.$('.jobs-item:nth(0)').hasClass('passed'), 'passed class should be applied to a job');
@ -37,6 +37,6 @@ test('it renders "Allowed Failures" version without a `required` property', func
component = this.subject({
jobs: jobs
});
this.append();
this.render();
return ok(component.$('.section-title').text().match(/Allowed Failures/));
});

View File

@ -9,7 +9,7 @@ test('it renders', function(assert) {
component = this.subject({
center: true
});
this.append();
this.render();
ok(component.$('span').hasClass('loading-indicator'), 'component has loading indicator class');
return ok(component.$().hasClass('loading-container'), 'indicator gets parent class if centered flag is given');
});

View File

@ -30,7 +30,7 @@ test('it renders', function() {
component = this.subject({
repo: attributes
});
this.append();
this.render();
ok(component.$().hasClass('passed'), 'component should have state class (passed)');
equal(component.$('.row-item:nth-of-type(1)').text().trim(), 'travis-chat', 'should display correct repo name');
equal(component.$('.row-item:nth-of-type(3)').text().trim(), 'master', 'should display branch name');

View File

@ -9,7 +9,7 @@ test('it renders', function() {
var component;
component = this.subject({});
this.append();
this.render();
return ok(component.$().hasClass('repo-main-tools'), 'component has class');
});

View File

@ -21,7 +21,7 @@ test('adds incident class to .status-circle', function() {
});
};
ok(!component.get('status'), 'status is initially not set');
this.append();
this.render();
equal(component.get('status'), 'major', 'status is updated from the API');
return ok(component.$('.status-circle').hasClass('major'), 'status class is set on .status-circle');
});

View File

@ -12,7 +12,7 @@ test('it renders', function() {
var url = "https://someurl.com/someimage.jpg";
var component = this.subject({url: url, name: name});
this.append();
this.render();
ok(component.$().hasClass('avatar'), 'component should have right class');
equal(component.$('.pseudo-avatar').data('initials'), 'HT', 'initials should be correct');

View File

@ -61,7 +61,7 @@ test('it properly stops polling hook without any models', function() {
component = this.subject({
pollModels: null
});
this.append();
this.render();
Ember.run(function() {
return component.destroy();
});
@ -84,7 +84,7 @@ test('it works even if one of the model is null', function() {
name: 'model1'
}
});
this.append();
this.render();
Ember.run(function() {
return component.destroy();
});
@ -120,7 +120,7 @@ test('it polls for both models if they are present', function() {
name: 'model2'
}
});
this.append();
this.render();
Ember.run(function() {
return component.destroy();
});
@ -163,7 +163,7 @@ test('it detects model changes', function() {
name: 'foo'
}
});
this.append();
this.render();
Ember.run(function() {
return component.set('model1', {
name: 'bar'