Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for resource JSON marshaling #2536

Merged
merged 1 commit into from Oct 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
44 changes: 44 additions & 0 deletions github/repos_test.go
Expand Up @@ -3083,3 +3083,47 @@ func TestDismissalRestrictionsRequest_Marshal(t *testing.T) {

testJSONMarshal(t, u, want)
}

func TestAdminEnforcement_Marshal(t *testing.T) {
testJSONMarshal(t, &AdminEnforcement{}, "{}")

u := &AdminEnforcement{
URL: String("https://www.test-url.in"),
Enabled: false,
}

want := `{
"url": "https://www.test-url.in",
"enabled": false
}`

testJSONMarshal(t, u, want)
}

func TestPullRequestReviewsEnforcementUpdate_Marshal(t *testing.T) {
testJSONMarshal(t, &PullRequestReviewsEnforcementUpdate{}, "{}")

u := &PullRequestReviewsEnforcementUpdate{
BypassPullRequestAllowancesRequest: &BypassPullRequestAllowancesRequest{
Users: []string{"user1", "user2"},
Teams: []string{"team1", "team2"},
Apps: []string{"app1", "app2"},
},
DismissStaleReviews: Bool(false),
RequireCodeOwnerReviews: Bool(true),
RequiredApprovingReviewCount: 2,
}

want := `{
"bypass_pull_request_allowances": {
"users": ["user1","user2"],
"teams": ["team1","team2"],
"apps": ["app1","app2"]
},
"dismiss_stale_reviews": false,
"require_code_owner_reviews": true,
"required_approving_review_count": 2
}`

testJSONMarshal(t, u, want)
}