Sha256: 7fc0032c7cde3561c113e921e66273e80db4320ec62f3594ea68dff9f25ad908

Contents?: true

Size: 1.85 KB

Versions: 5

Compression:

Stored size: 1.85 KB

Contents

require 'fileutils'

Given /^app "([^\"]*)" is using config "([^\"]*)"$/ do |path, config_name|
  target = File.join(PROJECT_ROOT_PATH, 'fixtures', path)
  config_path = File.join(expand_path("."), "config-#{config_name}.rb")
  config_dest = File.join(expand_path("."), 'config.rb')
  FileUtils.cp(config_path, config_dest)
end

Given /^an empty app$/ do
  step %Q{a directory named "empty_app"}
  step %Q{I cd to "empty_app"}
  ENV['MM_ROOT'] = nil
end

Given /^a fixture app "([^\"]*)"$/ do |path|
  ENV['MM_ROOT'] = nil

  # This step can be reentered from several places but we don't want
  # to keep re-copying and re-cd-ing into ever-deeper directories
  next if File.basename(expand_path(".")) == path

  step %Q{a directory named "#{path}"}

  target_path = File.join(PROJECT_ROOT_PATH, 'fixtures', path)
  FileUtils.cp_r(target_path, expand_path("."))

  step %Q{I cd to "#{path}"}
end

Then /^the file "([^\"]*)" has the contents$/ do |path, contents|
  write_file(path, contents)

  @server_inst.files.poll_once!
end

Then /^the file "([^\"]*)" is removed$/ do |path|
  FileUtils.rm(expand_path(path))

  @server_inst.files.poll_once!
end

Given /^a modification time for a file named "([^\"]*)"$/ do |file|
  target = File.join(expand_path("."), file)
  @modification_times[target] = File.mtime(target)
end

Then /^the file "([^\"]*)" should not have been updated$/ do |file|
  target = File.join(expand_path("."), file)
  expect(File.mtime(target)).to eq(@modification_times[target])
end

# Provide this Aruba overload in case we're matching something with quotes in it
Then /^the file "([^"]*)" should contain '([^']*)'$/ do |file, partial_content|
  expect(file).to have_file_content(Regexp.new(Regexp.escape(partial_content)), true)
end

And /the file "(.*)" should be gzipped/ do |file|
  expect(File.binread(File.join(expand_path("."), file), 2)).to eq(['1F8B'].pack('H*'))
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
middleman-core-4.5.1 lib/middleman-core/step_definitions/middleman_steps.rb
middleman-core-4.5.0 lib/middleman-core/step_definitions/middleman_steps.rb
middleman-core-4.4.3 lib/middleman-core/step_definitions/middleman_steps.rb
middleman-core-4.4.2 lib/middleman-core/step_definitions/middleman_steps.rb
middleman-core-4.4.0 lib/middleman-core/step_definitions/middleman_steps.rb