TestDefaultNoOpPaymentMethodPlugin.java

65 lines | 2.661 kB Blame History Raw Download
/*
 * 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.payment.provider;

import java.util.List;
import java.util.UUID;

import org.killbill.billing.payment.PaymentTestSuiteNoDB;
import org.killbill.billing.payment.api.PluginProperty;
import org.testng.Assert;
import org.testng.annotations.Test;

import com.google.common.collect.ImmutableList;

public class TestDefaultNoOpPaymentMethodPlugin extends PaymentTestSuiteNoDB {

    @Test(groups = "fast")
    public void testEquals() throws Exception {
        final String externalId = UUID.randomUUID().toString();
        final boolean isDefault = false;
        final List<PluginProperty> props = ImmutableList.<PluginProperty>of(new PluginProperty(UUID.randomUUID().toString(), UUID.randomUUID().toString(), false));

        final DefaultNoOpPaymentMethodPlugin paymentMethod = new DefaultNoOpPaymentMethodPlugin(externalId, isDefault, props);
        Assert.assertEquals(paymentMethod, paymentMethod);

        final DefaultNoOpPaymentMethodPlugin samePaymentMethod = new DefaultNoOpPaymentMethodPlugin(externalId, isDefault, props);
        Assert.assertEquals(samePaymentMethod, paymentMethod);

        final DefaultNoOpPaymentMethodPlugin otherPaymentMethod = new DefaultNoOpPaymentMethodPlugin(externalId, isDefault, ImmutableList.<PluginProperty>of());
        Assert.assertNotEquals(otherPaymentMethod, paymentMethod);
    }

    @Test(groups = "fast")
    public void testEqualsForPluginProperty() throws Exception {
        final String key = UUID.randomUUID().toString();
        final Object value = UUID.randomUUID();
        final boolean updatable = false;

        final PluginProperty kvInfo = new PluginProperty(key, value, updatable);
        Assert.assertEquals(kvInfo, kvInfo);

        final PluginProperty sameKvInfo = new PluginProperty(key, value, updatable);
        Assert.assertEquals(sameKvInfo, kvInfo);

        final PluginProperty otherKvInfo = new PluginProperty(key, value, !updatable);
        Assert.assertNotEquals(otherKvInfo, kvInfo);
    }
}