festivals
Version:
All festivals in one place.
134 lines (109 loc) • 3.72 kB
JavaScript
var funcTest = require('./initFunctionalTests');
var config = require('config');
var hippie = require('hippie');
var moment = require('moment');
var uuid = require('node-uuid');
describe('news functional test', function () {
it('should create news', function (done) {
var json = {
name: 'festival-' + funcTest.festivalId + '-news-name',
description: 'festival-' + funcTest.festivalId + '-news-description',
tags: [funcTest.festivalId],
authors: [{name: 'author-name', organization: 'organization'}],
images: [
{
url: 'http://podgk.pl/wp-content/uploads/2011/06/dni_fantastyki_podgk.jpg',
order: 0
}
]
};
hippie()
.header('User-Agent', config.test.ua)
.header('Authorization', 'Bearer ' + funcTest.token)
.json()
.header('Accept', config.test.accept)
.post(config.test.host + '/api/festivals/' + funcTest.festivalId + '/news')
.send(json)
.expectStatus(201)
.expectValue('name', json.name)
.expectValue('description', json.description)
.expectValue('tags', json.tags)
.expectValue('authors[0].name', json.authors[0].name)
.expectValue('authors[0].organization', json.authors[0].organization)
.expectValue('mainImage.small', json.images[0].url)
.expectValue('mainImage.medium', json.images[0].url)
.expectValue('mainImage.large', json.images[0].url)
.expectBody(/id/g)
.expectBody(/createdAt/g)
.expectBody(/updatedAt/g)
.end(function (err, res, body) {
funcTest.festivalNewsId = body.id;
if (err) {
console.warn(err, body);
throw err;
}
done();
});
});
it('should update festival news for id', function (done) {
var json = {
name: 'updated-festival-' + funcTest.festivalId + '-news-name',
};
hippie()
.header('User-Agent', config.test.ua)
.header('Authorization', 'Bearer ' + funcTest.token)
.json()
.header('Accept', config.test.accept)
.put(config.test.host + '/api/festivals/' + funcTest.festivalId + '/news/' + funcTest.festivalNewsId)
.send(json)
.expectStatus(200)
.expectValue('id', funcTest.festivalNewsId)
.expectValue('name', json.name)
.expectBody(/createdAt/g)
.expectBody(/updatedAt/g)
.end(function (err, res, body) {
if (err) {
console.warn(err, body);
throw err;
}
done();
});
});
it('should get festival news for id', function (done) {
hippie()
.header('User-Agent', config.test.ua)
.header('Authorization', 'Bearer ' + funcTest.token)
.json()
.header('Accept', config.test.accept)
.get(config.test.host + '/api/festivals/' + funcTest.festivalId + '/news/' + funcTest.festivalNewsId)
.expectStatus(200)
.expectValue('id', funcTest.festivalNewsId)
.expectBody(/createdAt/g)
.expectBody(/updatedAt/g)
.end(function (err, res, body) {
if (err) {
console.warn(err, body);
throw err;
}
done();
});
});
it('should return festival news collection', function (done) {
hippie()
.header('User-Agent', config.test.ua)
.header('Authorization', 'Bearer ' + funcTest.token)
.json()
.header('Accept', config.test.accept)
.get(config.test.host + '/api/festivals/' + funcTest.festivalId + '/news')
.expectStatus(200)
.expectBody(/total/g)
.expectBody(/news/g)
.end(function (err, res, body) {
if (err) {
console.warn(err, body);
throw err;
}
done();
});
});
});