Add spec for go-import middleware
This commit is contained in:
parent
bb206f947f
commit
b23a05d09b
1 changed files with 30 additions and 0 deletions
30
spec/lib/gitlab/middleware/go_spec.rb
Normal file
30
spec/lib/gitlab/middleware/go_spec.rb
Normal file
|
@ -0,0 +1,30 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe Gitlab::Middleware::Go, lib: true do
|
||||
let(:app) { double(:app) }
|
||||
let(:middleware) { described_class.new(app) }
|
||||
|
||||
describe '#call' do
|
||||
describe 'when go-get=0' do
|
||||
it 'skips go-import generation' do
|
||||
env = { 'rack.input' => '',
|
||||
'QUERY_STRING' => 'go-get=0' }
|
||||
expect(app).to receive(:call).with(env).and_return('no-go')
|
||||
middleware.call(env)
|
||||
end
|
||||
end
|
||||
|
||||
describe 'when go-get=1' do
|
||||
it 'returns a document' do
|
||||
env = { 'rack.input' => '',
|
||||
'QUERY_STRING' => 'go-get=1',
|
||||
'PATH_INFO' => '/group/project/path' }
|
||||
resp = middleware.call(env)
|
||||
expect(resp[0]).to eq(200)
|
||||
expect(resp[1]['Content-Type']).to eq('text/html')
|
||||
expected_body = "<!DOCTYPE html><html><head><meta content='localhost/group/project git http://localhost/group/project.git' name='go-import'></head></html>\n"
|
||||
expect(resp[2].body).to eq([expected_body])
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue