engine/features/step_definitions/theme_asset_steps.rb

65 lines
1.8 KiB
Ruby
Raw Normal View History

### Theme assets
# helps create a theme asset
2012-04-25 19:26:02 +00:00
def new_plain_text_asset(name, type)
FactoryGirl.build(:theme_asset, {
:site => @site,
:plain_text_name => name,
:plain_text => 'Lorem ipsum',
:plain_text_type => type,
:performing_plain_text => true
})
2012-04-25 19:26:02 +00:00
end
2012-04-25 19:26:02 +00:00
def create_plain_text_asset(name, type)
asset = new_plain_text_asset(name, type)
asset.save!
end
# creates various theme assets
Given /^a javascript asset named "([^"]*)"$/ do |name|
@asset = create_plain_text_asset(name, 'javascript')
end
2012-04-25 19:26:02 +00:00
Given /^a javascript asset named "([^"]*)" with id "([^"]*)"$/ do |name, id|
@asset = new_plain_text_asset(name, 'javascript')
@asset.id = BSON::ObjectId(id)
@asset.save!
end
Given /^a stylesheet asset named "([^"]*)"$/ do |name|
@asset = create_plain_text_asset(name, 'stylesheet')
end
2012-04-25 19:26:02 +00:00
Given /^a stylesheet asset named "([^"]*)" with id "([^"]*)"$/ do |name, id|
@asset = new_plain_text_asset(name, 'stylesheet')
@asset.id = BSON::ObjectId(id)
@asset.save!
end
Given /^I have an image theme asset named "([^"]*)"$/ do |name|
@asset = FactoryGirl.create(:theme_asset, :site => @site, :source => File.open(Rails.root.join('..', 'fixtures', 'assets', '5k.png')))
@asset.source_filename = name
@asset.save!
end
# other stuff
# change the template
2012-02-28 10:25:51 +00:00
When /^I change the theme asset code to "([^"]*)"$/ do |plain_text|
page.evaluate_script "window.application_view.view.editor.setValue('#{plain_text}')"
end
2012-02-28 10:25:51 +00:00
Then /^I should see "([^"]*)" as the theme asset code$/ do |code|
find(:css, "#theme_asset_plain_text").value.should == code
end
Then /^I should see a delete link$/ do
page.has_css?(".box ul li .more a.remove").should be_true
end
Then /^I should not see a delete link$/ do
page.has_css?(".box ul li .more a.remove").should be_false
end