blob: 5c14ac96e19e212f217b1a26a5900be62782250f [file] [log] [blame]
$:.unshift File.join(File.dirname(__FILE__), '..')
require 'spec_helpers'
require 'update_keyword_index'
require 'rubygems'
require 'nokogiri'
describe UpdateKeywordIndex do
before :each do
directory = Helper::create_tmp_directory_assets(__FILE__)
@file = File.join(directory, '_index.html')
@update_keyword = UpdateKeywordIndex.new
end
it 'should skip all files but _index.html' do
# All false
@update_keyword.run('index.html').should be_false
@update_keyword.run('index.htm').should be_false
@update_keyword.run('_index.htm').should be_false
@update_keyword.run('index.md.html').should be_false
end
it 'should rename the title' do
Nokogiri::HTML(File.read @file).css('#subheader > h1' )[0].content.should_not == @update_keyword.header_title
@update_keyword.run @file
Nokogiri::HTML(File.read @file).css('#subheader > h1' )[0].content.should == @update_keyword.header_title
end
it 'should rename the h1' do
Nokogiri::HTML(File.read @file).css('#content > h1')[0].content.should_not == @update_keyword.content_title
@update_keyword.run @file
Nokogiri::HTML(File.read @file).css('#content > h1')[0].content.should == @update_keyword.content_title
end
it 'should remove the <hr/>' do
Nokogiri::HTML(File.read @file).css('#content > hr').should have_at_least(1).items
@update_keyword.run @file
Nokogiri::HTML(File.read @file).css('#content > hr').should have(0).items
end
it 'should update references from index.md.html to index.html' do
Nokogiri::HTML(File.read @file).to_html.scan('index.md.html').length.should_not == 0
@update_keyword.run @file
Nokogiri::HTML(File.read @file).to_html.scan('index.md.html').length.should == 0
end
after :all do
Helper::remove_tmp_directory
end
end