require 'spec_helper'

feature 'Multi-file editor upload file', :js do
  include WaitForRequests

  let(:user) { create(:user) }
  let(:project) { create(:project, :repository) }
  let(:txt_file) { File.join(Rails.root, 'spec', 'fixtures', 'doc_sample.txt') }
  let(:img_file) { File.join(Rails.root, 'spec', 'fixtures', 'dk.png') }

  before do
    project.add_master(user)
    sign_in(user)

    page.driver.set_cookie('new_repo', 'true')

    visit project_tree_path(project, :master)

    wait_for_requests
  end

  it 'uploads text file' do
    find('.add-to-tree').click

    # make the field visible so capybara can use it
    execute_script('document.querySelector("#file-upload").classList.remove("hidden")')
    attach_file('file-upload', txt_file)

    find('.add-to-tree').click

    expect(page).to have_selector('.repo-tab', text: 'doc_sample.txt')
    expect(page).to have_content(File.open(txt_file, &:readline))
  end

  it 'uploads image file' do
    find('.add-to-tree').click

    # make the field visible so capybara can use it
    execute_script('document.querySelector("#file-upload").classList.remove("hidden")')
    attach_file('file-upload', img_file)

    find('.add-to-tree').click

    expect(page).to have_selector('.repo-tab', text: 'dk.png')
    expect(page).not_to have_selector('.monaco-editor')
    expect(page).to have_content('The source could not be displayed for this temporary file.')
  end
end