-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #699 from LGordon2/init-feature
Feature: cucumber --init
- Loading branch information
Showing
3 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
module Cucumber | ||
|
||
# Generates generic file structure for a cucumber project | ||
class ProjectInitializer | ||
def run | ||
create_directory('features') | ||
create_directory('features/step_definitions') | ||
create_directory('features/support') | ||
create_file('features/support/env.rb') | ||
end | ||
|
||
private | ||
|
||
def create_directory(dir_name) | ||
create_directory_or_file dir_name, true | ||
end | ||
|
||
def create_file(file_name) | ||
create_directory_or_file file_name, false | ||
end | ||
|
||
def create_directory_or_file(file_name, directory) | ||
file_type = if directory | ||
:mkdir_p | ||
else | ||
:touch | ||
end | ||
|
||
report_exists(file_name) || return if File.exists?(file_name) | ||
|
||
report_creating(file_name) | ||
FileUtils.send file_type, file_name | ||
end | ||
|
||
def report_exists(file) | ||
puts " exist #{file}" | ||
end | ||
|
||
def report_creating(file) | ||
puts " create #{file}" | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
require 'spec_helper' | ||
require 'tmpdir' | ||
|
||
module Cucumber | ||
describe ProjectInitializer, :isolated_home => true do | ||
let(:command_line_config) { ProjectInitializer.new } | ||
|
||
before do | ||
allow(command_line_config).to receive(:puts) | ||
end | ||
|
||
context "no files created" do | ||
around(:example) do |example| | ||
|
||
dir = Dir.mktmpdir | ||
original_dir = Dir.pwd | ||
begin | ||
FileUtils.cd dir | ||
example.call | ||
ensure | ||
FileUtils.cd original_dir | ||
FileUtils.rm_rf dir | ||
end | ||
end | ||
|
||
it "should create features directory" do | ||
expect(command_line_config).to receive(:puts).with %r(^\s+create\s+features$) | ||
command_line_config.run | ||
end | ||
|
||
it "should create step_definitions directory" do | ||
expect(command_line_config).to receive(:puts).with %r(^\s+create\s+features/step_definitions$) | ||
command_line_config.run | ||
end | ||
|
||
it "should create support directory" do | ||
expect(command_line_config).to receive(:puts).with %r(^\s+create\s+features/support$) | ||
command_line_config.run | ||
end | ||
|
||
it "should create env.rb directory" do | ||
expect(command_line_config).to receive(:puts).with %r(^\s+create\s+features/support/env.rb$) | ||
command_line_config.run | ||
end | ||
|
||
end | ||
|
||
context "files created" do | ||
around(:example) do |example| | ||
dir = Dir.mktmpdir | ||
FileUtils.mkdir_p "#{dir}/features" | ||
FileUtils.mkdir_p "#{dir}/features/step_definitions" | ||
FileUtils.mkdir_p "#{dir}/features/support" | ||
FileUtils.touch "#{dir}/features/support/env.rb" | ||
original_dir = Dir.pwd | ||
begin | ||
FileUtils.cd dir | ||
example.call | ||
ensure | ||
FileUtils.cd original_dir | ||
FileUtils.rm_rf dir | ||
end | ||
end | ||
|
||
it "should not create features directory" do | ||
expect(command_line_config).to receive(:puts).with %r(^\s+exist\s+features$) | ||
command_line_config.run | ||
end | ||
|
||
it "should not create step_definitions directory" do | ||
expect(command_line_config).to receive(:puts).with %r(^\s+exist\s+features/step_definitions$) | ||
command_line_config.run | ||
end | ||
|
||
it "should not create support directory" do | ||
expect(command_line_config).to receive(:puts).with %r(^\s+exist\s+features/support$) | ||
command_line_config.run | ||
end | ||
|
||
it "should not create env.rb directory" do | ||
expect(command_line_config).to receive(:puts).with %r(^\s+exist\s+features/support/env.rb$) | ||
command_line_config.run | ||
end | ||
|
||
end | ||
end | ||
end |