Rough in species index test

This commit is contained in:
Matthew Dillon 2015-11-02 18:06:45 -07:00
parent afa70efdad
commit 9c065af74a
7 changed files with 61 additions and 24 deletions

View file

@ -1,11 +1,19 @@
export default function() {
// Don't use mirage for development (for now)
this.urlPrefix = 'http://127.0.0.1:8901';
this.namespace = 'api';
this.namespace = '/api';
this.passthrough();
}
export function testConfig() {
this.urlPrefix = 'http://127.0.0.1:8901';
this.namespace = 'api';
this.urlPrefix = 'https://bactdb-test.herokuapp.com';
this.namespace = '/api/hymenobacter';
this.get('/users/:id', function(db, request) {
return { 'user': db.users.find(request.params.id) };
});
this.get('/species', function(db) {
return { 'species': db.species };
});
}

View file

@ -1,20 +0,0 @@
/*
This is an example factory definition.
Create more files in this directory to define additional factories.
*/
import Mirage/*, {faker} */ from 'ember-cli-mirage';
export default Mirage.Factory.extend({
// name: 'Pete', // strings
// age: 20, // numbers
// tall: true, // booleans
// email: function(i) { // and functions
// return 'person' + i + '@test.com';
// },
// firstName: faker.name.firstName, // using faker
// lastName: faker.name.firstName,
// zipCode: faker.address.zipCode
});

View file

@ -0,0 +1,11 @@
import Mirage, { faker } from 'ember-cli-mirage';
export default Mirage.Factory.extend({
speciesName: faker.lorem.words,
typeSpecies: faker.random.boolean,
etymology: faker.lorem.sentences,
genusName: 'hymenobacter',
strains: [],
totalStrains: 0,
sortOrder: faker.random.number,
});

View file

@ -0,0 +1,8 @@
import Mirage, { faker } from 'ember-cli-mirage';
export default Mirage.Factory.extend({
name() { return faker.name.firstName() + ' ' + faker.name.lastName(); },
email: faker.internet.email,
role: 'R',
canEdit: false,
});

View file

@ -1,4 +1,4 @@
<h3>Total species: {{species.length}}</h3>
<h3 id="total-species">Total species: {{species.length}}</h3>
{{add-button label="Add Species" link="protected.species.new" canAdd=metaData.canAdd}}

View file

@ -36,6 +36,7 @@ module.exports = function(environment) {
apiURL = 'https://bactdb-test.herokuapp.com';
ENV.APP.LOG_ACTIVE_GENERATION = false;
ENV.APP.LOG_VIEW_LOOKUPS = false;
ENV.locationType = 'none';
}
if (environment === 'production') {

View file

@ -0,0 +1,29 @@
import Ember from 'ember';
import { module, test } from 'qunit';
import startApp from '../helpers/start-app';
import { authenticateSession } from '../helpers/ember-simple-auth';
module('Acceptance | species', {
beforeEach: function() {
this.application = startApp();
authenticateSession(this.application, {
access_token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJiYWN0ZGIiLCJzdWIiOiIxIiwiZXhwIjoxNDQ2NTAyMjI2LCJpYXQiOjE0NDY0OTg2MjZ9.vIjKHAsp2TkCV505EbtCo2xQT-2oQkB-Nv5y0b6E7Mg"
});
server.create('users', { role: 'A', canEdit: true });
},
afterEach: function() {
Ember.run(this.application, 'destroy');
}
});
test('visiting /species', function(assert) {
const species = server.createList('species', 20);
visit('/species');
andThen(function() {
assert.equal(currentURL(), '/species');
assert.equal(find(".flakes-table > tbody > tr").length, species.length);
assert.equal(find("#total-species").text(), "Total species: 20");
});
});