Sha256: f753ba25d87bd90a6a993d56ca3c65cb7a290523077071ca303bcf52cb99f47a

Contents?: true

Size: 1.05 KB

Versions: 7

Compression:

Stored size: 1.05 KB

Contents

require "refile/test_app"

feature "Direct HTTP post file uploads", :js do
  scenario "Successfully upload a file" do
    visit "/presigned/posts/new"
    fill_in "Title", with: "A cool post"
    attach_file "Document", path("hello.txt")

    expect(page).to have_content("Presign start")
    expect(page).to have_content("Presign complete")
    expect(page).to have_content("Upload started")
    expect(page).to have_content("Upload complete token accepted")
    expect(page).to have_content("Upload success token accepted")

    click_button "Create"

    expect(page).to have_selector("h1", text: "A cool post")
    expect(download_link("Document")).to eq("hello")
  end

  scenario "Fail to upload a file that is too large" do
    visit "/presigned/posts/new"
    fill_in "Title", with: "A cool post"
    attach_file "Document", path("large.txt")

    expect(page).to have_content("Presign start")
    expect(page).to have_content("Presign complete")
    expect(page).to have_content("Upload started")
    expect(page).to have_content("Upload failure too large")
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
leifcr-refile-0.7.3 spec/refile/features/presigned_upload_spec.rb
leifcr-refile-0.7.1 spec/refile/features/presigned_upload_spec.rb
leifcr-refile-0.7.0 spec/refile/features/presigned_upload_spec.rb
leifcr-refile-0.6.3 spec/refile/features/presigned_upload_spec.rb
refile-0.6.2 spec/refile/features/presigned_upload_spec.rb
refile-0.6.1 spec/refile/features/presigned_upload_spec.rb
refile-0.6.0 spec/refile/features/presigned_upload_spec.rb