diff options
author | Stan Hu <stanhu@gmail.com> | 2015-10-22 14:16:37 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2015-10-22 14:16:37 -0700 |
commit | 69e5e260b0bd28cd48983494b2765e1cef0d3c38 (patch) | |
tree | b7d9a0951424dd2d15bc116300f25a7eb8ebf825 /spec | |
parent | 64a270a6455d474926aaa8be281c88fca072a113 (diff) | |
download | gitlab-ce-69e5e260b0bd28cd48983494b2765e1cef0d3c38.tar.gz |
Add spec for cloning Wiki over HTTP
Diffstat (limited to 'spec')
-rw-r--r-- | spec/lib/gitlab/backend/grack_auth_spec.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/lib/gitlab/backend/grack_auth_spec.rb b/spec/lib/gitlab/backend/grack_auth_spec.rb index 37c527221a0..dfa0e10318a 100644 --- a/spec/lib/gitlab/backend/grack_auth_spec.rb +++ b/spec/lib/gitlab/backend/grack_auth_spec.rb @@ -50,6 +50,22 @@ describe Grack::Auth do 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 before do env["PATH_INFO"] = project.path_with_namespace + ".git" |