Skip to content

Commit

Permalink
Document exceptions and satisfy codacy's demands.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajay Kannan committed Feb 25, 2016
1 parent ee78b22 commit 08295ee
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 25 deletions.
15 changes: 15 additions & 0 deletions gcloud-java-core/src/main/java/com/google/gcloud/IamPolicy.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ public abstract static class Builder<R, B extends Builder<R, B>> {
private String etag;
private Integer version;

/**
* Constructor for IAM Policy builder.
*/
protected Builder() {}

/**
Expand All @@ -73,6 +76,8 @@ public final B bindings(Map<R, Set<Identity>> bindings) {

/**
* Adds a binding to the policy.
*
* @throws IllegalArgumentException if the policy already contains a binding with the same role
*/
public final B addBinding(R role, Set<Identity> identities) {
checkArgument(!bindings.containsKey(role),
Expand All @@ -83,6 +88,8 @@ public final B addBinding(R role, Set<Identity> identities) {

/**
* Adds a binding to the policy.
*
* @throws IllegalArgumentException if the policy already contains a binding with the same role
*/
public final B addBinding(R role, Identity first, Identity... others) {
checkArgument(!bindings.containsKey(role),
Expand All @@ -104,8 +111,12 @@ public final B removeBinding(R role) {

/**
* Adds one or more identities to an existing binding.
*
* @throws IllegalArgumentException if the policy doesn't contain a binding with the specified
* role
*/
public final B addIdentity(R role, Identity first, Identity... others) {
checkArgument(bindings.containsKey(role), "The policy doesn't contain the specified role.");
Set<Identity> identities = bindings.get(role);
identities.add(first);
identities.addAll(Arrays.asList(others));
Expand All @@ -114,8 +125,12 @@ public final B addIdentity(R role, Identity first, Identity... others) {

/**
* Removes one or more identities from an existing binding.
*
* @throws IllegalArgumentException if the policy doesn't contain a binding with the specified
* role
*/
public final B removeIdentity(R role, Identity first, Identity... others) {
checkArgument(bindings.containsKey(role), "The policy doesn't contain the specified role.");
bindings.get(role).remove(first);
bindings.get(role).removeAll(Arrays.asList(others));
return self();
Expand Down
45 changes: 20 additions & 25 deletions gcloud-java-core/src/test/java/com/google/gcloud/IdentityTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.fail;

import org.junit.Test;

Expand Down Expand Up @@ -48,48 +47,44 @@ public void testAllAuthenticatedUsers() {
public void testUser() {
assertEquals(Identity.Type.USER, USER.type());
assertEquals("[email protected]", USER.id());
try {
Identity.user(null);
fail("Should have thrown exception due to null email address.");
} catch (NullPointerException e) {
// expected
}
}

@Test(expected = NullPointerException.class)
public void testUserNullEmail() {
Identity.user(null);
}

@Test
public void testServiceAccount() {
assertEquals(Identity.Type.SERVICE_ACCOUNT, SERVICE_ACCOUNT.type());
assertEquals("[email protected]", SERVICE_ACCOUNT.id());
try {
Identity.serviceAccount(null);
fail("Should have thrown exception due to null email address.");
} catch (NullPointerException e) {
// expected
}
}

@Test(expected = NullPointerException.class)
public void testServiceAccountNullEmail() {
Identity.serviceAccount(null);
}

@Test
public void testGroup() {
assertEquals(Identity.Type.GROUP, GROUP.type());
assertEquals("[email protected]", GROUP.id());
try {
Identity.group(null);
fail("Should have thrown exception due to null email address.");
} catch (NullPointerException e) {
// expected
}
}

@Test(expected = NullPointerException.class)
public void testGroupNullEmail() {
Identity.group(null);
}

@Test
public void testDomain() {
assertEquals(Identity.Type.DOMAIN, DOMAIN.type());
assertEquals("google.com", DOMAIN.id());
try {
Identity.domain(null);
fail("Should have thrown exception due to null domain.");
} catch (NullPointerException e) {
// expected
}
}

@Test(expected = NullPointerException.class)
public void testDomainNullId() {
Identity.domain(null);
}

@Test
Expand Down

0 comments on commit 08295ee

Please sign in to comment.