/*
* Copyright 2010-2013 Ning, Inc.
* Copyright 2014 Groupon, Inc
* Copyright 2014 The Billing Project, LLC
*
* The Billing Project licenses this file to you under the Apache License, version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package org.killbill.billing.jaxrs;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.UUID;
import org.killbill.billing.ObjectType;
import org.killbill.billing.client.model.Account;
import org.killbill.billing.client.model.AccountEmail;
import org.killbill.billing.client.model.AuditLog;
import org.killbill.billing.util.audit.ChangeType;
import org.testng.Assert;
import org.testng.annotations.Test;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;
public class TestAccountEmail extends TestJaxrsBase {
@Test(groups = "slow", description = "Can create and delete account emails")
public void testAddAndRemoveAccountEmail() throws Exception {
final Account input = createAccount();
final UUID accountId = input.getAccountId();
final String email1 = UUID.randomUUID().toString();
final String email2 = UUID.randomUUID().toString();
final AccountEmail accountEmailJson1 = new AccountEmail(accountId, email1);
final AccountEmail accountEmailJson2 = new AccountEmail(accountId, email2);
// Verify the initial state
final List<AccountEmail> firstEmails = killBillClient.getEmailsForAccount(accountId);
Assert.assertEquals(firstEmails.size(), 0);
// Add an email
killBillClient.addEmailToAccount(accountEmailJson1, createdBy, reason, comment);
// Verify we can retrieve it
final List<AccountEmail> secondEmails = killBillClient.getEmailsForAccount(accountId);
Assert.assertEquals(secondEmails.size(), 1);
Assert.assertEquals(secondEmails.get(0).getAccountId(), accountId);
Assert.assertEquals(secondEmails.get(0).getEmail(), email1);
// Add another email
killBillClient.addEmailToAccount(accountEmailJson2, createdBy, reason, comment);
// Verify we can retrieve both
final List<AccountEmail> thirdEmails = killBillClient.getEmailsForAccount(accountId);
Assert.assertEquals(thirdEmails.size(), 2);
Assert.assertEquals(thirdEmails.get(0).getAccountId(), accountId);
Assert.assertEquals(thirdEmails.get(1).getAccountId(), accountId);
Assert.assertTrue(thirdEmails.get(0).getEmail().equals(email1) || thirdEmails.get(0).getEmail().equals(email2));
Assert.assertTrue(thirdEmails.get(1).getEmail().equals(email1) || thirdEmails.get(1).getEmail().equals(email2));
// Delete the first email
killBillClient.removeEmailFromAccount(accountEmailJson1, createdBy, reason, comment);
// Verify it has been deleted
final List<AccountEmail> fourthEmails = killBillClient.getEmailsForAccount(accountId);
Assert.assertEquals(fourthEmails.size(), 1);
Assert.assertEquals(fourthEmails.get(0).getAccountId(), accountId);
Assert.assertEquals(fourthEmails.get(0).getEmail(), email2);
// Try to add the same email
killBillClient.addEmailToAccount(accountEmailJson2, createdBy, reason, comment);
Assert.assertEquals(killBillClient.getEmailsForAccount(accountId), fourthEmails);
}
@Test(groups = "slow", description = "retrieve account logs")
public void testGetAccountEmailAuditLogsWithHistory() throws Exception {
final Account accountJson = createAccount();
assertNotNull(accountJson);
final String email1 = UUID.randomUUID().toString();
final AccountEmail accountEmailJson1 = new AccountEmail(accountJson.getAccountId(), email1);
// Add an email
killBillClient.addEmailToAccount(accountEmailJson1, requestOptions);
// get all audit for the account
final List<AuditLog> auditLogsJson = killBillClient.getAccountAuditLogs(accountJson.getAccountId());
Assert.assertEquals(auditLogsJson.size(), 2);
final List<AuditLog> emailAuditLogWithHistories = killBillClient.getAccountEmailAuditLogsWithHistory(accountJson.getAccountId(), auditLogsJson.get(0).getObjectId());
assertEquals(emailAuditLogWithHistories.size(), 1);
assertEquals(emailAuditLogWithHistories.get(0).getChangeType(), ChangeType.INSERT.toString());
assertEquals(emailAuditLogWithHistories.get(0).getObjectType(), ObjectType.ACCOUNT_EMAIL);
assertEquals(emailAuditLogWithHistories.get(0).getObjectId(), auditLogsJson.get(0).getObjectId());
final LinkedHashMap history1 = (LinkedHashMap) emailAuditLogWithHistories.get(0).getHistory();
assertNotNull(history1);
assertEquals(history1.get("email"), email1);
}
}