2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe Projects::BlobController, '(JavaScript fixtures)', type: :controller do
|
2017-08-17 22:00:37 +05:30
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
|
|
|
let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
|
|
|
|
let(:project) { create(:project, :repository, namespace: namespace, path: 'branches-project') }
|
2022-04-04 11:22:00 +05:30
|
|
|
let(:user) { project.first_owner }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
render_views
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
before do
|
2022-03-02 08:16:31 +05:30
|
|
|
stub_feature_flags(refactor_blob_viewer: false) # This fixture is only used by the legacy (non-refactored) blob viewer
|
2021-02-22 17:27:13 +05:30
|
|
|
sign_in(user)
|
2019-07-07 11:18:12 +05:30
|
|
|
allow(SecureRandom).to receive(:hex).and_return('securerandomhex:thereisnospoon')
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
after do
|
|
|
|
remove_repository(project)
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
it 'blob/show.html' do
|
2019-02-15 15:39:39 +05:30
|
|
|
get(:show, params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: 'add-ipython-files/files/ipython/basic.ipynb'
|
|
|
|
})
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
expect(response).to be_successful
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
it 'blob/show_readme.html' do
|
|
|
|
get(:show, params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
2022-01-26 12:08:38 +05:30
|
|
|
id: "#{project.default_branch}/README.md"
|
2021-01-03 14:25:43 +05:30
|
|
|
})
|
|
|
|
|
|
|
|
expect(response).to be_successful
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|