-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #313 from arnaudh/ah/more-info-when-unauthorized
WIP Display reason when user is unauthorized
- Loading branch information
Showing
6 changed files
with
185 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
using Dates: DateTime | ||
using Registrator.WebUI: isauthorized, AuthFailure, AuthSuccess, User | ||
using GitForge: GitForge, GitHub, GitLab | ||
using HTTP: stacktrace | ||
|
||
using Mocking | ||
|
||
Mocking.activate() | ||
|
||
function patch_gitforge(body::Function; is_collaborator=false, is_member=false) | ||
patches = [ | ||
@patch GitForge.is_collaborator(args...) = | ||
GitForge.Result{Bool}(is_collaborator, nothing, nothing, stacktrace()) | ||
@patch GitForge.is_member(args...) = | ||
GitForge.Result{Bool}(is_member, nothing, nothing, stacktrace()) | ||
] | ||
|
||
apply(patches) do | ||
return body() | ||
end | ||
end | ||
|
||
@testset "gitutils" begin | ||
|
||
@testset "isauthorized" begin | ||
@test isauthorized("username", "reponame") == AuthFailure("Unkown user type or repo type") | ||
|
||
@testset "GitHub" begin | ||
|
||
user = GitHub.User(login="user123") | ||
org = GitHub.User(login="JuliaLang") | ||
private_repo = GitHub.Repo(name="Example.jl", private=true, owner=user) | ||
public_repo_of_user = GitHub.Repo(name="Example.jl", private=false, owner=user, organization=nothing) | ||
public_repo_of_org = GitHub.Repo(name="Example.jl", private=false, owner=org, organization=org) | ||
u = User(user, GitHub.GitHubAPI()) | ||
|
||
@testset "private repo" begin | ||
# Assuming CONFIG["allow_private"] is false | ||
@test isauthorized(u, private_repo) == AuthFailure("Repo Example.jl is private") | ||
end | ||
|
||
@testset "public repo of user" begin | ||
# authorized if user is a collaborator on the repo | ||
patch_gitforge(is_collaborator=true) do | ||
@test isauthorized(u, public_repo_of_user) == AuthSuccess() | ||
end | ||
patch_gitforge(is_collaborator=false) do | ||
@test isauthorized(u, public_repo_of_user) == AuthFailure("User user123 is not a collaborator on repo Example.jl") | ||
end | ||
end | ||
|
||
@testset "public repo of org" begin | ||
# authorized if user is either a collaborator on the repo or member of the org | ||
patch_gitforge(is_collaborator=true, is_member=true) do | ||
@test isauthorized(u, public_repo_of_org) == AuthSuccess() | ||
end | ||
patch_gitforge(is_collaborator=true, is_member=false) do | ||
@test isauthorized(u, public_repo_of_org) == AuthSuccess() | ||
end | ||
patch_gitforge(is_collaborator=false, is_member=true) do | ||
@test isauthorized(u, public_repo_of_org) == AuthSuccess() | ||
end | ||
patch_gitforge(is_collaborator=false, is_member=false) do | ||
@test isauthorized(u, public_repo_of_org) == AuthFailure("User user123 is not a member of the org JuliaLang and not a collaborator on repo Example.jl") | ||
end | ||
end | ||
end | ||
|
||
@testset "GitLab" begin | ||
|
||
user = GitLab.User(name="user123", username="user123", id=111) | ||
org = GitLab.User(name="org123", username="org123", id=222) | ||
private_project = GitLab.Project(name="Example.jl", visibility="private", owner=user) | ||
public_project_of_user = GitLab.Project(name="Example.jl", visibility="public", owner=user, namespace=GitLab.Namespace(kind="user")) | ||
public_project_of_group = GitLab.Project(name="Example.jl", visibility="public", owner=org, namespace=GitLab.Namespace(kind="group", full_path="org123/subgroup/Example.jl")) | ||
u = User(user, GitLab.GitLabAPI()) | ||
|
||
@testset "private project" begin | ||
# Assuming CONFIG["allow_private"] is false | ||
@test isauthorized(u, private_project) == AuthFailure("Project Example.jl is private") | ||
end | ||
|
||
@testset "public project of user" begin | ||
# authorized if user is a collaborator on the project | ||
patch_gitforge(is_collaborator=true) do | ||
@test isauthorized(u, public_project_of_user) == AuthSuccess() | ||
end | ||
patch_gitforge(is_collaborator=false) do | ||
@test isauthorized(u, public_project_of_user) == AuthFailure("User user123 is not a member of project Example.jl") | ||
end | ||
end | ||
|
||
@testset "public project of group" begin | ||
# authorized if user is a collaborator on the project or member of the group/subgroups | ||
patch_gitforge(is_collaborator=true, is_member=true) do | ||
@test isauthorized(u, public_project_of_group) == AuthSuccess() | ||
end | ||
patch_gitforge(is_collaborator=false, is_member=true) do | ||
@test isauthorized(u, public_project_of_group) == AuthSuccess() | ||
end | ||
patch_gitforge(is_collaborator=true, is_member=false) do | ||
@test isauthorized(u, public_project_of_group) == AuthSuccess() | ||
end | ||
patch_gitforge(is_collaborator=false, is_member=false) do | ||
@test isauthorized(u, public_project_of_group) == AuthFailure("Project Example.jl belongs to the group org123/subgroup/Example.jl, and user user123 is not a member of that group or its parent group(s)") | ||
end | ||
end | ||
end | ||
end | ||
|
||
end |