Add spec for cloning Wiki over HTTP
This commit is contained in:
parent
64a270a645
commit
69e5e260b0
1 changed files with 16 additions and 0 deletions
|
@ -50,6 +50,22 @@ describe Grack::Auth do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "when the Wiki for a project exists" do
|
||||||
|
before do
|
||||||
|
@wiki = ProjectWiki.new(project)
|
||||||
|
env["PATH_INFO"] = "#{@wiki.repository.path_with_namespace}.git/info/refs"
|
||||||
|
project.update_attribute(:visibility_level, Project::PUBLIC)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "responds with the right project" do
|
||||||
|
response = auth.call(env)
|
||||||
|
json_body = ActiveSupport::JSON.decode(response[2][0])
|
||||||
|
|
||||||
|
expect(response.first).to eq(200)
|
||||||
|
expect(json_body['RepoPath']).to include(@wiki.repository.path_with_namespace)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "when the project exists" do
|
context "when the project exists" do
|
||||||
before do
|
before do
|
||||||
env["PATH_INFO"] = project.path_with_namespace + ".git"
|
env["PATH_INFO"] = project.path_with_namespace + ".git"
|
||||||
|
|
Loading…
Reference in a new issue