Fix uploading images through CKEditor's upload tab

The bug was introduced when we upgraded the ckeditor gem in commit
f240e007.
This commit is contained in:
Javi Martín
2020-01-17 19:57:53 +01:00
parent 3bdbbed430
commit d19abd7ddb
2 changed files with 17 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ CKEDITOR.editorConfig = function( config )
config.filebrowserImageBrowseUrl = "/ckeditor/pictures";
config.filebrowserImageUploadUrl = "/ckeditor/pictures";
config.filebrowserUploadUrl = "/ckeditor/attachment_files";
config.filebrowserUploadMethod = "form";
config.allowedContent = true;
config.format_tags = "p;h2;h3";

View File

@@ -14,4 +14,20 @@ describe "CKEditor" do
expect(page).to have_css ".translatable-fields[data-locale='en'] .cke_wysiwyg_frame"
end
scenario "uploading an image through the upload tab", :js do
login_as(create(:administrator).user)
visit new_admin_site_customization_page_path
find(".cke_button__image").click
click_link "Upload"
within_frame(1) do
attach_file "Send it to the Server", Rails.root.join("spec/fixtures/files/clippy.jpg")
end
click_link "Send it to the Server"
expect(page).to have_css "img[src$='clippy.jpg']"
end
end