Package org.jpos.security

Source Code of org.jpos.security.BaseSMAdapterTest

/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2014 Alejandro P. Revilla
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

package org.jpos.security;

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

import java.util.Properties;

import org.jpos.core.Configuration;
import org.jpos.core.SimpleConfiguration;
import org.jpos.core.SubConfiguration;
import org.jpos.util.Logger;
import org.jpos.util.NameRegistrar;
import org.junit.Test;

public class BaseSMAdapterTest {

    @Test
    public void testConstructor() throws Throwable {
        Configuration cfg = new SubConfiguration(new SimpleConfiguration(new Properties(null)), "testBaseSMAdapterPrefix");
        Logger logger = new Logger();
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter(cfg, logger, "testBaseSMAdapterRealm");
        assertSame("baseSMAdapter.cfg", cfg, baseSMAdapter.cfg);
        assertEquals("baseSMAdapter.realm", "testBaseSMAdapterRealm", baseSMAdapter.realm);
        assertSame("baseSMAdapter.logger", logger, baseSMAdapter.logger);
    }

    @Test
    public void testConstructor1() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        assertNull("baseSMAdapter.realm", baseSMAdapter.realm);
        assertNull("baseSMAdapter.logger", baseSMAdapter.logger);
    }

    @Test
    public void testDecryptPINImplThrowsSMException() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        try {
            baseSMAdapter.decryptPINImpl(new EncryptedPIN());
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test
    public void testEncryptPINThrowsNullPointerException2() throws Throwable {
        try {
            new BaseSMAdapter().encryptPIN("testBaseSMAdapterPin", null);
            fail("Expected NullPointerException to be thrown");
        } catch (NullPointerException ex) {
            assertNull("ex.getMessage()", ex.getMessage());
        }
    }

    @Test
    public void testExportKeyImplThrowsSMException() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        byte[] keyBytes = new byte[1];
        try {
            baseSMAdapter
                    .exportKeyImpl(new SecureDESKey((short) 100, "testBaseSMAdapterKeyType", keyBytes, "testString".getBytes()),
                            new SecureDESKey());
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test
    public void testExportPINImplThrowsSMException() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        try {
            baseSMAdapter.exportPINImpl(new EncryptedPIN(),
                    new SecureDESKey((short) 100, "testBaseSMAdapterKeyType", "testString".getBytes(), "".getBytes()), (byte) 0);
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test
    public void testGenerateCBC_MACImplThrowsSMException() throws Throwable {
        BaseSMAdapter jCESecurityModule = new BaseSMAdapter();
        byte[] data = new byte[2];
        try {
            jCESecurityModule.generateCBC_MACImpl(data, new SecureDESKey());
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test(expected = SMException.class)
    public void testGenerateCBC_MACThrowsSMException1() throws Throwable {
        new BaseSMAdapter().generateCBC_MAC((byte[]) null, new SecureDESKey((short) 100, "testBaseSMAdapterKeyType",
                "testBaseSMAdapterKeyHexString1", "testBaseSMAdapterKeyCheckValueHexString1"));
    }

    @Test
    public void testGenerateKeyImplThrowsSMException() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        try {
            baseSMAdapter.generateKeyImpl((short) 100, "testBaseSMAdapterKeyType");
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test
    public void testGetLogger() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        Logger logger = Logger.getLogger("testBaseSMAdapterName");
        baseSMAdapter.setLogger(logger, "testBaseSMAdapterRealm");
        Logger result = baseSMAdapter.getLogger();
        assertSame("result", logger, result);
    }

    @Test
    public void testGetRealm() throws Throwable {
        BaseSMAdapter jCESecurityModule = new BaseSMAdapter();
        jCESecurityModule.setLogger(new Logger(), "testBaseSMAdapterRealm");
        String result = jCESecurityModule.getRealm();
        assertEquals("result", "testBaseSMAdapterRealm", result);
    }

    @Test
    public void testGetSMAdapter() throws Throwable {
        BaseSMAdapter jCESecurityModule = new BaseSMAdapter();
        jCESecurityModule.setName("testString");
        BaseSMAdapter result = (BaseSMAdapter) BaseSMAdapter.getSMAdapter("testString");
        assertSame("result", jCESecurityModule, result);
    }

    @Test
    public void testGetSMAdapterThrowsNotFoundException() throws Throwable {
        try {
            BaseSMAdapter.getSMAdapter("14CharactersXX");
            fail("Expected NotFoundException to be thrown");
        } catch (NameRegistrar.NotFoundException ex) {
            assertEquals("ex.getMessage()", "s-m-adapter.14CharactersXX", ex.getMessage());
        }
    }

    @Test
    public void testImportKeyImplThrowsSMException() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        byte[] encryptedKey = new byte[1];
        try {
            baseSMAdapter.importKeyImpl((short) 100, "testBaseSMAdapterKeyType", encryptedKey, new SecureDESKey(), true);
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test(expected = SMException.class)
    public void testImportKeyThrowsSMException2() throws Throwable {
        new BaseSMAdapter().importKey((short) 100, "testBaseSMAdapterKeyType", (byte[]) null, new SecureDESKey((short) 100,
                "testBaseSMAdapterKeyType", "testBaseSMAdapterKeyHexString1", "testBaseSMAdapterKeyCheckValueHexString1"), true);
    }

    @Test
    public void testImportPINImplThrowsSMException() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        try {
            baseSMAdapter.importPINImpl(new EncryptedPIN(), new SecureDESKey());
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test
    public void testImportPINImplThrowsSMException1() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter(new SubConfiguration(new SimpleConfiguration(new Properties(null)),
                "testBaseSMAdapterPrefix"), new Logger(), "testBaseSMAdapterRealm");
        try {
            baseSMAdapter.importPINImpl(new EncryptedPIN("testBaseSMAdapterPinBlockHexString", (byte) 0,
                    "testBaseSMAdapterAccountNumber"), new KeySerialNumber(), new SecureDESKey((short) 100,
                    "testBaseSMAdapterKeyType", "testBaseSMAdapterKeyHexString1", "testBaseSMAdapterKeyCheckValueHexString1"));
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test
    public void testSetConfiguration() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        Configuration cfg = new SimpleConfiguration();
        baseSMAdapter.setConfiguration(cfg);
        assertSame("baseSMAdapter.cfg", cfg, baseSMAdapter.cfg);
    }

    @Test
    public void testSetLogger() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        Logger logger = Logger.getLogger("testBaseSMAdapterName");
        baseSMAdapter.setLogger(logger, "testBaseSMAdapterRealm");
        assertSame("baseSMAdapter.logger", logger, baseSMAdapter.logger);
        assertEquals("baseSMAdapter.realm", "testBaseSMAdapterRealm", baseSMAdapter.realm);
    }

    @Test
    public void testSetName() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        baseSMAdapter.setName("testBaseSMAdapterName");
        assertEquals("baseSMAdapter.getName()", "testBaseSMAdapterName", baseSMAdapter.getName());
    }

    @Test
    public void testTranslatePINImplThrowsSMException() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter();
        SecureDESKey bdk = new SecureDESKey();
        try {
            baseSMAdapter.translatePINImpl(new EncryptedPIN(), new KeySerialNumber(), bdk, bdk, (byte) 0);
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

    @Test
    public void testTranslatePINImplThrowsSMException1() throws Throwable {
        BaseSMAdapter baseSMAdapter = new BaseSMAdapter(new SubConfiguration(new SimpleConfiguration(new Properties(null)),
                "testBaseSMAdapterPrefix"), new Logger(), "testBaseSMAdapterRealm");
        try {
            baseSMAdapter.translatePINImpl(new EncryptedPIN(), new SecureDESKey((short) 100, "testBaseSMAdapterKeyType",
                    "testBaseSMAdapterKeyHexString1", "testBaseSMAdapterKeyCheckValueHexString1"), new SecureDESKey(), (byte) 0);
            fail("Expected SMException to be thrown");
        } catch (SMException ex) {
            assertEquals("ex.getMessage()", "Operation not supported in: org.jpos.security.BaseSMAdapter", ex.getMessage());
            assertNull("ex.nested", ex.nested);
            assertNull("ex.getNested()", ex.getNested());
        }
    }

}
TOP

Related Classes of org.jpos.security.BaseSMAdapterTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.