mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-30 00:11:23 +00:00
132 lines
7.0 KiB
Java
132 lines
7.0 KiB
Java
package org.kohsuke.github;
|
|
|
|
import org.junit.Test;
|
|
|
|
/**
|
|
* @author Sourabh Sarvotham Parkala
|
|
*/
|
|
public class GHVerificationReasonTest extends AbstractGitHubWireMockTest {
|
|
// Issue 737
|
|
@Test
|
|
public void testExpiredKey() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f01");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.EXPIRED_KEY);
|
|
}
|
|
|
|
@Test
|
|
public void testNotSigningKey() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f02");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.NOT_SIGNING_KEY);
|
|
}
|
|
|
|
@Test
|
|
public void testGpgverifyError() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f03");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.GPGVERIFY_ERROR);
|
|
}
|
|
|
|
@Test
|
|
public void testGpgverifyUnavailable() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f04");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(),
|
|
GHVerification.Reason.GPGVERIFY_UNAVAILABLE);
|
|
}
|
|
|
|
@Test
|
|
public void testUnsigned() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f05");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.UNSIGNED);
|
|
}
|
|
|
|
@Test
|
|
public void testUnknownSignatureType() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f06");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(),
|
|
GHVerification.Reason.UNKNOWN_SIGNATURE_TYPE);
|
|
}
|
|
|
|
@Test
|
|
public void testNoUser() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f07");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.NO_USER);
|
|
}
|
|
|
|
@Test
|
|
public void testUnverifiedEmail() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f08");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.UNVERIFIED_EMAIL);
|
|
}
|
|
|
|
@Test
|
|
public void testBadEmail() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f09");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.BAD_EMAIL);
|
|
}
|
|
|
|
@Test
|
|
public void testUnknownKey() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f10");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.UNKNOWN_KEY);
|
|
}
|
|
|
|
@Test
|
|
public void testMalformedSignature() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f11");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(),
|
|
GHVerification.Reason.MALFORMED_SIGNATURE);
|
|
}
|
|
|
|
@Test
|
|
public void testInvalid() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f12");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertFalse(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.INVALID);
|
|
}
|
|
|
|
@Test
|
|
public void testValid() throws Exception {
|
|
GHRepository r = gitHub.getRepository("github-api/github-api");
|
|
GHCommit commit = r.getCommit("86a2e245aa6d71d54923655066049d9e21a15f13");
|
|
assertEquals(commit.getCommitShortInfo().getAuthor().getName(), "Sourabh Parkala");
|
|
assertTrue(commit.getCommitShortInfo().getVerification().isVerified());
|
|
assertEquals(commit.getCommitShortInfo().getVerification().getReason(), GHVerification.Reason.VALID);
|
|
assertNotNull(commit.getCommitShortInfo().getVerification().getPayload());
|
|
assertNotNull(commit.getCommitShortInfo().getVerification().getSignature());
|
|
}
|
|
}
|