fix specs related to location release

This commit is contained in:
bilal
2020-06-12 02:42:50 +02:00
parent 021ac7ffc6
commit 3e611094ab
3 changed files with 88 additions and 30 deletions

View File

@@ -21,26 +21,7 @@ feature "User managing location releases" do
expect(page).not_to have_content submitted_release_notice
by "filling out the form" do
fill_in location_name_field, with: "Benny's Burritos"
fill_in address_street1_field, with: "100 Broadway"
fill_in address_city_field, with: "D"
fill_in address_state_field, with: "CA"
fill_in address_zip_field, with: "123"
fill_in person_first_name_field, with: "Jane"
fill_in person_last_name_field, with: "Doe"
fill_in person_phone_field, with: "555-555-5555"
fill_in person_email_field, with: "jane.doe@test.com"
fill_in person_company_field, with: "Inc"
fill_in person_title_field, with: "Mrs."
fill_in person_address_street1_field, with: "100 Broadway"
fill_in person_address_city_field, with: "D"
fill_in person_address_state_field, with: "CA"
fill_in person_address_zip_field, with: "123"
fill_filming_started_on_field
fill_filming_ended_on_field
fill_in filming_hours_field, with: "04:00 - 22:00"
draw_signature file_fixture("signature.png"), "location_release_signature_base64"
fill_all_form_fields
end
click_button submit_release_button
@@ -53,15 +34,7 @@ feature "User managing location releases" do
visit new_account_project_contract_template_location_release_path(project.account, project, contract_template)
fill_in location_name_field, with: "Benny's Burritos"
fill_in person_first_name_field, with: "Jane"
fill_in person_last_name_field, with: "Doe"
fill_in person_phone_field, with: "555-555-5555"
fill_in person_email_field, with: "jane.doe@test.com"
fill_in person_address_street1_field, with: "100 Broadway"
fill_in filming_hours_field, with: "04:00 - 22:00"
draw_signature file_fixture("signature.png"), "location_release_signature_base64"
fill_all_form_fields
drop_file Rails.root.join(file_fixture("location_photo.png")), type: :dropzone
click_button submit_release_button
@@ -238,6 +211,29 @@ feature "User managing location releases" do
private
def fill_all_form_fields
fill_in location_name_field, with: "Benny's Burritos"
fill_in address_street1_field, with: "100 Broadway"
fill_in address_city_field, with: "D"
fill_in address_state_field, with: "CA"
fill_in address_zip_field, with: "123"
fill_in person_first_name_field, with: "Jane"
fill_in person_last_name_field, with: "Doe"
fill_in person_phone_field, with: "555-555-5555"
fill_in person_email_field, with: "jane.doe@test.com"
fill_in person_company_field, with: "Inc"
fill_in person_title_field, with: "Mrs."
fill_in person_address_street1_field, with: "100 Broadway"
fill_in person_address_city_field, with: "D"
fill_in person_address_state_field, with: "CA"
fill_in person_address_zip_field, with: "123"
fill_filming_started_on_field
fill_filming_ended_on_field
fill_in filming_hours_field, with: "04:00 - 22:00"
draw_signature file_fixture("signature.png"), "location_release_signature_base64"
end
def country_field_value
find_field("location_release[person_address_country]").value
end