From 19ce57998377ce8f7fe01eac9953d8bd775aaae7 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 4 Nov 2015 13:05:03 -0700 Subject: [PATCH] Test new species (plus minor cleanup) --- app/mirage/config.js | 1 + app/mixins/elevated-access.js | 2 +- app/pods/protected/species/edit/route.js | 5 +++++ tests/acceptance/species-test.js | 14 ++++++++++++++ 4 files changed, 21 insertions(+), 1 deletion(-) diff --git a/app/mirage/config.js b/app/mirage/config.js index 408f6bc..79cee5e 100644 --- a/app/mirage/config.js +++ b/app/mirage/config.js @@ -13,6 +13,7 @@ export function testConfig() { this.get('/users/:id'); this.get('/species'); + this.post('/species'); this.get('/species/:id'); this.put('/species/:id'); } diff --git a/app/mixins/elevated-access.js b/app/mixins/elevated-access.js index e557331..326042a 100644 --- a/app/mixins/elevated-access.js +++ b/app/mixins/elevated-access.js @@ -18,7 +18,7 @@ export default Mixin.create({ }, afterModel: function(model) { - if (!model.get('canEdit')) { + if (!model.get('isNew') && !model.get('canEdit')) { this.transitionTo(this.get('fallbackRouteAfter'), model.get('id')); } }, diff --git a/app/pods/protected/species/edit/route.js b/app/pods/protected/species/edit/route.js index f429c37..fd5b75c 100644 --- a/app/pods/protected/species/edit/route.js +++ b/app/pods/protected/species/edit/route.js @@ -7,4 +7,9 @@ export default Route.extend(ElevatedAccess, { // Required for ElevatedAccess mixin fallbackRouteBefore: 'protected.species.index', fallbackRouteAfter: 'protected.species.show', + + model: function(params) { + return this.store.findRecord('species', params.species_id); + }, + }); diff --git a/tests/acceptance/species-test.js b/tests/acceptance/species-test.js index 1e7f433..656acd5 100644 --- a/tests/acceptance/species-test.js +++ b/tests/acceptance/species-test.js @@ -54,3 +54,17 @@ test('editing /species/:id/edit', function(assert) { }); }); }); + +test('creating /species/new', function(assert) { + visit(`/species/new`); + + andThen(function() { + assert.equal(currentURL(), `/species/new`); + fillIn('.species-name', 'New Species Name'); + click('.save-species'); + + andThen(function() { + assert.equal(find(".flakes-information-box > legend > em").text().trim(), 'New Species Name'); + }); + }); +});