Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
All green for create sites feature
Browse files Browse the repository at this point in the history
  • Loading branch information
qrush committed Apr 1, 2009
1 parent c22cd84 commit 0d78cb7
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 18 deletions.
12 changes: 6 additions & 6 deletions features/create_sites.feature
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Feature: Create sites

Scenario: Basic site with layout and a page
Given I have a _layouts directory
And I have an "index.html" file with layout "default" that contains "Basic Site with Layout"
And I have an "index.html" page with layout "default" that contains "Basic Site with Layout"
And I have a default layout that contains "Page Layout: {{ content }}"
When I run jekyll
Then the _site directory should exist
Expand All @@ -30,17 +30,17 @@ Feature: Create sites
Given I have a _layouts directory
And I have a _posts directory
And I have the following post:
| title | date | layout | content |
| Wargames | 3/27/2009 | default | Would you like to play a game?" |
| title | date | layout | content |
| Wargames | 3/27/2009 | default | The only winning move is not to play. |
And I have a default layout that contains "Post Layout: {{ content }}"
When I run jekyll
Then the _site directory should exist
And I should see "Post Layout: Would you like to play a game?" in "_site/2009/03/27/wargames.html"
And I should see "Post Layout: <p>The only winning move is not to play.</p>" in "_site/2009/03/27/wargames.html"

Scenario: Basic site with include tag
Given I have a _includes directory
And I have an "index.html" file that contains "Basic Site with include tag: {% include about.html %}"
And I have an "_includes/about.html" file that contains "Generated by Jekyll"
And I have an "index.html" page that contains "Basic Site with include tag: {% include about.textile %}"
And I have an "_includes/about.textile" file that contains "Generated by Jekyll"
When I run jekyll
Then the _site directory should exist
And I should see "Basic Site with include tag: Generated by Jekyll" in "_site/index.html"
46 changes: 34 additions & 12 deletions features/step_definitions/jekyll_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,28 @@
FileUtils.rm_rf(TEST_DIR)
end

Given /^I have an "(.*)" file(?: with (.*) "(.*)")? that contains "(.*)"$/ do |file, key, value, text|
Given /^I have an "(.*)" page(?: with layout "(.*)")? that contains "(.*)"$/ do |file, layout, text|
File.open(file, 'w') do |f|
if key && value
f.write <<EOF
f.write <<EOF
---
#{key}: #{value}
layout: #{layout || 'nil'}
---
EOF
end

f.write(text)
f.close
end
end

Given /^I have an "(.*)" file that contains "(.*)"$/ do |file, text|
File.open(file, 'w') do |f|
f.write(text)
f.close
end
end

Given /^I have a (.*) layout that contains "(.*)"$/ do |layout, text|
File.open(layout, 'w') do |f|
File.open(File.join('_layouts', layout + '.html'), 'w') do |f|
f.write(text)
f.close
end
Expand All @@ -34,16 +39,33 @@
FileUtils.mkdir(dir)
end

Given /^I have the following posts?(?: in "(.*)")?:$/ do |table, dir|
pending
Given /^I have the following posts?(?: in "(.*)")?:$/ do |dir, table|
table.hashes.each do |post|
date = Date.parse(post['date']).strftime('%Y-%m-%d')
path = File.join("_posts", "#{date}-#{post['title'].downcase}.textile")

matter_hash = {'title' => post['title']}
matter_hash['layout'] = post['layout'] if post['layout']
matter = matter_hash.map { |k, v| "#{k}: #{v}\n" }

File.open(path, 'w') do |f|
f.write <<EOF
---
#{matter}
---
#{post['content']}
EOF
f.close
end
end
end

Given /^I have a configuration file(?: in "(.*)")? with "(.*)" set to "(.*)"$/ do |dir, key, value|
pending
end

When /^I run jekyll$/ do
`#{File.join(ENV['PWD'], 'bin', 'jekyll')} >> /dev/null`
`#{File.join(ENV['PWD'], 'bin', 'jekyll')}`
end

When /^I change "(.*)" to contain "(.*)"$/ do |file, text|
Expand All @@ -55,11 +77,11 @@
end

Then /^the (.*) directory should exist$/ do |dir|
pending
assert File.directory?(dir)
end

Then /^I should see "(.*)"(?: in "(.*)")?$/ do |text, file|
pending
Then /^I should see "(.*)" in "(.*)"$/ do |text, file|
assert_match Regexp.new(text), File.open(file).readlines.join
end

Then /^the "(.*)" file should not exist$/ do |file|
Expand Down
5 changes: 5 additions & 0 deletions features/support/env.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
require 'fileutils'
require 'rr'
require 'test/unit'

World do
include Test::Unit::Assertions
end

TEST_DIR = File.join('/', 'tmp', 'jekyll')

0 comments on commit 0d78cb7

Please sign in to comment.