# -*- coding: utf-8 -*- require 'spec_helper' module Nwiki module Frontend describe do def app App.new 'spec/examples/sample.git' end subject { last_response } before do get path end context 'GET /' do let(:path) { '/' } it { subject.should be_ok } it { subject.should match %r!\bヽ(´・肉・`)ノログ\b! } it { subject.should match %r!\bHow do we fighting without fighting?\b! } end context 'GET /articles' do let(:path) { '/articles/' } it { subject.should be_ok } it { subject.should match %r!\bfoo\b! } it { subject.should match %r!\b1\b! } it { subject.should match %r!\b日本語ディレクトリ\b! } end context 'GET /articles.xml' do let(:path) { '/articles.xml' } it { subject.should be_ok } it { subject['Content-Type'].should eq 'application/atom+xml; charset=UTF-8' } describe 'response body' do subject { RSS::Parser.parse(last_response.body) } it { expect { subject }.to_not raise_error } it { should_not be_nil } it { subject.link.href.should eq 'http://example.org/articles.xml' } it { subject.title.content.should eq 'ヽ(´・肉・`)ノログ' } it { subject.subtitle.content.should eq 'How do we fighting without fighting?' } it { subject.author.name.content.should eq 'niku' } it { subject.date.should eq Time.parse('2014-02-06') } it { subject.id.content.should eq 'http://example.org/articles.xml' } it { subject.items.first.link.href.should eq 'http://example.org/articles/icon.png' } it { subject.items.first.title.content.should eq "icon.png" } it { subject.items.first.date.should eq Time.parse('2012-08-09 20:15:07 +0900') } end end context 'GET /articles/foo' do let(:path) { '/articles/foo' } it { subject.should be_ok } it { subject.should match %r!