mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
dd4f8a5f6a
When setting the Content-Type header for the RSS feeds, the character set is omitted. However, when running the feed through the [Feed Validator](http://feedvalidator.org), it became apparent that there was a problem as the encoding defaults to US-ASCII. See [RFC 3023](http://www.ietf.org/rfc/rfc3023.txt) for further information on the default XML charset over HTTP. I have added a test and simple update to the 'Content-Type' header.
68 lines
3.6 KiB
JavaScript
68 lines
3.6 KiB
JavaScript
/**
|
|
* Tests if RSS exists and is working
|
|
*/
|
|
/*globals url, CasperTest, casper */
|
|
CasperTest.begin('Ensure that RSS is available', 11, function suite(test) {
|
|
CasperTest.Routines.togglePermalinks.run('off');
|
|
casper.thenOpen(url + 'rss/', function (response) {
|
|
var content = this.getPageContent(),
|
|
siteTitle = '<title><![CDATA[Ghost]]></title>',
|
|
siteDescription = '<description><![CDATA[Just a blogging platform.]]></description>',
|
|
siteUrl = '<link>http://127.0.0.1:2369/</link>',
|
|
postTitle = '<![CDATA[Welcome to Ghost]]>',
|
|
postStart = '<description><![CDATA[<p>You\'re live!',
|
|
postEnd = 'you think :)</p>]]></description>',
|
|
postLink = '<link>http://127.0.0.1:2369/welcome-to-ghost/</link>',
|
|
postCreator = '<dc:creator><![CDATA[Test User]]>';
|
|
|
|
test.assertEqual(response.status, 200, 'Response status should be 200.');
|
|
test.assert(content.indexOf('<rss') >= 0, 'Feed should contain <rss');
|
|
test.assert(content.indexOf(siteTitle) >= 0, 'Feed should contain blog title.');
|
|
test.assert(content.indexOf(siteDescription) >= 0, 'Feed should contain blog description.');
|
|
test.assert(content.indexOf(siteUrl) >= 0, 'Feed should contain link to blog.');
|
|
test.assert(content.indexOf(postTitle) >= 0, 'Feed should contain welcome post title.');
|
|
test.assert(content.indexOf(postStart) >= 0, 'Feed should contain start of welcome post content.');
|
|
test.assert(content.indexOf(postEnd) >= 0, 'Feed should contain end of welcome post content.');
|
|
test.assert(content.indexOf(postLink) >= 0, 'Feed should have link to the welcome post.');
|
|
test.assert(content.indexOf(postCreator) >= 0, 'Welcome post should have Test User as the creator.');
|
|
test.assert(content.indexOf('</rss>') >= 0, 'Feed should contain </rss>');
|
|
});
|
|
}, false);
|
|
|
|
CasperTest.begin('Ensure that author element is not included. Only dc:creator', 3, function suite(test) {
|
|
CasperTest.Routines.togglePermalinks.run('off');
|
|
casper.thenOpen(url + 'rss/', function (response) {
|
|
var content = this.getPageContent(),
|
|
author = '<author>',
|
|
postCreator = '<dc:creator><![CDATA[Test User]]>';
|
|
|
|
test.assertEqual(response.status, 200, 'Response status should be 200.');
|
|
test.assert(content.indexOf(author) < 0, 'Author element should not be included');
|
|
test.assert(content.indexOf(postCreator) >= 0, 'Welcome post should have Test User as the creator.');
|
|
});
|
|
}, false);
|
|
|
|
CasperTest.begin('Ensures dated permalinks works with RSS', 2, function suite(test) {
|
|
CasperTest.Routines.togglePermalinks.run('on');
|
|
casper.thenOpen(url + 'rss/', function (response) {
|
|
var content = this.getPageContent(),
|
|
today = new Date(),
|
|
dd = ("0" + today.getDate()).slice(-2),
|
|
mm = ("0" + (today.getMonth() + 1)).slice(-2),
|
|
yyyy = today.getFullYear(),
|
|
postLink = '/' + yyyy + '/' + mm + '/' + dd + '/welcome-to-ghost/';
|
|
|
|
test.assertEqual(response.status, 200, 'Response status should be 200.');
|
|
test.assert(content.indexOf(postLink) >= 0, 'Feed should have dated permalink.');
|
|
});
|
|
CasperTest.Routines.togglePermalinks.run('off');
|
|
}, false);
|
|
|
|
CasperTest.begin('Ensure that character set is UTF-8 for RSS feed', 1, function suite(test) {
|
|
CasperTest.Routines.togglePermalinks.run('off');
|
|
casper.thenOpen(url + 'rss/', function (response) {
|
|
test.assertEqual(response.headers.get('Content-Type'), 'text/xml; charset=UTF-8', 'Content type should include UTF-8 character set encoding.');
|
|
});
|
|
}, false);
|
|
|