summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/att/nsa/cambria/transaction
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/att/nsa/cambria/transaction')
-rw-r--r--src/test/java/com/att/nsa/cambria/transaction/JUnitTestSuite.java42
-rw-r--r--src/test/java/com/att/nsa/cambria/transaction/TestRunner.java41
-rw-r--r--src/test/java/com/att/nsa/cambria/transaction/TransactionObjTest.java175
-rw-r--r--src/test/java/com/att/nsa/cambria/transaction/TrnRequestTest.java187
-rw-r--r--src/test/java/com/att/nsa/cambria/transaction/impl/DMaaPSimpleTransactionFactoryTest.java67
-rw-r--r--src/test/java/com/att/nsa/cambria/transaction/impl/JUnitTestSuite.java42
-rw-r--r--src/test/java/com/att/nsa/cambria/transaction/impl/TestRunner.java41
7 files changed, 0 insertions, 595 deletions
diff --git a/src/test/java/com/att/nsa/cambria/transaction/JUnitTestSuite.java b/src/test/java/com/att/nsa/cambria/transaction/JUnitTestSuite.java
deleted file mode 100644
index 2391679..0000000
--- a/src/test/java/com/att/nsa/cambria/transaction/JUnitTestSuite.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP Policy Engine
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed 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.
- * ============LICENSE_END=========================================================
- */
-
-package com.att.nsa.cambria.transaction;
-
-import junit.framework.TestSuite;
-
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-import org.junit.runners.Suite.SuiteClasses;
-import org.apache.log4j.Logger;
-
-@RunWith(Suite.class)
-@SuiteClasses({ TransactionObjTest.class, TrnRequestTest.class, })
-public class JUnitTestSuite {
- private static final Logger LOGGER = Logger.getLogger(JUnitTestSuite.class);
-
- public static void main(String[] args) {
- LOGGER.info("Running the test suite");
-
- TestSuite tstSuite = new TestSuite();
- LOGGER.info("Total Test Counts " + tstSuite.countTestCases());
- }
-
-}
diff --git a/src/test/java/com/att/nsa/cambria/transaction/TestRunner.java b/src/test/java/com/att/nsa/cambria/transaction/TestRunner.java
deleted file mode 100644
index e420175..0000000
--- a/src/test/java/com/att/nsa/cambria/transaction/TestRunner.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP Policy Engine
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed 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.
- * ============LICENSE_END=========================================================
- */
-
-package com.att.nsa.cambria.transaction;
-
-import org.junit.runner.JUnitCore;
-import org.junit.runner.Result;
-import org.junit.runner.notification.Failure;
-import org.apache.log4j.Logger;
-
-public class TestRunner {
- private static final Logger LOGGER = Logger.getLogger(TestRunner.class);
-
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Result result = JUnitCore.runClasses(JUnitTestSuite.class);
- for (Failure failure : result.getFailures()) {
- LOGGER.info(failure.toString());
-
- }
- LOGGER.info(result.wasSuccessful());
- }
-
-}
diff --git a/src/test/java/com/att/nsa/cambria/transaction/TransactionObjTest.java b/src/test/java/com/att/nsa/cambria/transaction/TransactionObjTest.java
deleted file mode 100644
index 2e6aa21..0000000
--- a/src/test/java/com/att/nsa/cambria/transaction/TransactionObjTest.java
+++ /dev/null
@@ -1,175 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP Policy Engine
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed 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.
- * ============LICENSE_END=========================================================
- */
-
-package com.att.nsa.cambria.transaction;
-
-import static org.junit.Assert.*;
-
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-
-import com.att.dmf.mr.transaction.TransactionObj;
-
-public class TransactionObjTest {
-
- @Before
- public void setUp() throws Exception {
- }
-
- @After
- public void tearDown() throws Exception {
- }
-
- @Test
- public void testAsJsonObject() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
-
- try {
- obj.asJsonObject();
-
- } catch(NullPointerException e) {
- assertTrue(true);
- }
-
- }
-
- @Test
- public void testGetId() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.getId();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetId() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.setId("23");
- assertTrue(true);
-
- }
-
- @Test
- public void testGetCreateTime() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.getCreateTime();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetCreateTime() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.setCreateTime("12:00:00");
- assertTrue(true);
-
- }
-
- @Test
- public void testSerialize() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.serialize();
- assertTrue(true);
-
- }
-
- @Test
- public void testGetTotalMessageCount() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.getTotalMessageCount();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetTotalMessageCount() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.setTotalMessageCount(200);
- assertTrue(true);
-
- }
-
- @Test
- public void testGetSuccessMessageCount() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.getSuccessMessageCount();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetSuccessMessageCount() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.setSuccessMessageCount(198);
- assertTrue(true);
-
- }
-
- @Test
- public void testGetFailureMessageCount() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.getFailureMessageCount();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetFailureMessageCount() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.setFailureMessageCount(2);
- assertTrue(true);
-
- }
-
- @Test
- public void testGetfData() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.getfData();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetfData() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.setfData(null);
- assertTrue(true);
-
- }
-
- @Test
- public void testGetTrnRequest() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.getTrnRequest();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetTrnRequest() {
- TransactionObj obj = new TransactionObj("23", 100, 98, 2);
- obj.setTrnRequest(null);
- assertTrue(true);
-
- }
-
-
-}
diff --git a/src/test/java/com/att/nsa/cambria/transaction/TrnRequestTest.java b/src/test/java/com/att/nsa/cambria/transaction/TrnRequestTest.java
deleted file mode 100644
index 40e59af..0000000
--- a/src/test/java/com/att/nsa/cambria/transaction/TrnRequestTest.java
+++ /dev/null
@@ -1,187 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP Policy Engine
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed 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.
- * ============LICENSE_END=========================================================
- */
-
-package com.att.nsa.cambria.transaction;
-
-import static org.junit.Assert.*;
-
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-
-import com.att.dmf.mr.transaction.TransactionObj;
-import com.att.dmf.mr.transaction.TrnRequest;
-
-public class TrnRequestTest {
-
- @Before
- public void setUp() throws Exception {
- }
-
- @After
- public void tearDown() throws Exception {
- }
-
- @Test
- public void testGetId() {
- TrnRequest req = new TrnRequest();
-
- req.getId();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetId() {
- TrnRequest req = new TrnRequest();
-
- req.setId("23");
- assertTrue(true);
-
- }
-
- @Test
- public void testGetRequestCreate() {
- TrnRequest req = new TrnRequest();
-
- req.getRequestCreate();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetRequestCreate() {
- TrnRequest req = new TrnRequest();
-
- req.setRequestCreate("createRequest");
- assertTrue(true);
-
- }
-
- @Test
- public void testGetRequestHost() {
- TrnRequest req = new TrnRequest();
-
- req.getRequestHost();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetRequestHost() {
- TrnRequest req = new TrnRequest();
-
- req.setRequestHost("requestHost");
- assertTrue(true);
-
- }
-
- @Test
- public void testGetServerHost() {
- TrnRequest req = new TrnRequest();
-
- req.getServerHost();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetServerHost() {
- TrnRequest req = new TrnRequest();
-
- req.setServerHost("requestHost");
- assertTrue(true);
-
- }
-
- @Test
- public void testGetMessageProceed() {
- TrnRequest req = new TrnRequest();
-
- req.getMessageProceed();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetMessageProceed() {
- TrnRequest req = new TrnRequest();
-
- req.setMessageProceed("messageProceed");
- assertTrue(true);
-
- }
-
- @Test
- public void testGetTotalMessage() {
- TrnRequest req = new TrnRequest();
-
- req.getTotalMessage();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetTotalMessage() {
- TrnRequest req = new TrnRequest();
-
- req.setTotalMessage("200");
- assertTrue(true);
-
- }
-
-
- @Test
- public void testGetClientType() {
- TrnRequest req = new TrnRequest();
-
- req.getClientType();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetClientType() {
- TrnRequest req = new TrnRequest();
-
- req.setClientType("admin");
- assertTrue(true);
-
- }
-
- @Test
- public void testGetUrl() {
- TrnRequest req = new TrnRequest();
-
- req.getUrl();
- assertTrue(true);
-
- }
-
- @Test
- public void testSetUrl() {
- TrnRequest req = new TrnRequest();
-
- req.setUrl("http://google.com");
- assertTrue(true);
-
- }
-
-}
diff --git a/src/test/java/com/att/nsa/cambria/transaction/impl/DMaaPSimpleTransactionFactoryTest.java b/src/test/java/com/att/nsa/cambria/transaction/impl/DMaaPSimpleTransactionFactoryTest.java
deleted file mode 100644
index 5260993..0000000
--- a/src/test/java/com/att/nsa/cambria/transaction/impl/DMaaPSimpleTransactionFactoryTest.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP Policy Engine
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed 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.
- * ============LICENSE_END=========================================================
- */
-
-package com.att.nsa.cambria.transaction.impl;
-
-import static org.junit.Assert.*;
-
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-
-import com.att.dmf.mr.transaction.impl.DMaaPSimpleTransactionFactory;
-
-public class DMaaPSimpleTransactionFactoryTest {
-
- @Before
- public void setUp() throws Exception {
- }
-
- @After
- public void tearDown() throws Exception {
- }
-
- @Test
- public void testMakeNewTransactionObj() {
-
- DMaaPSimpleTransactionFactory factory = new DMaaPSimpleTransactionFactory();
-
- factory.makeNewTransactionObj("{'transactionId': '123', 'totalMessageCount': '200', "
- + "'successMessageCount': '200', 'failureMessageCount': '0'}");
- String trueValue = "True";
- assertTrue(trueValue.equalsIgnoreCase("True"));
-
-
- }
-
- @Test
- public void testMakeNewTransactionId() {
-
- DMaaPSimpleTransactionFactory factory = new DMaaPSimpleTransactionFactory();
- factory.makeNewTransactionId("123");
-
- String trueValue = "True";
- assertTrue(trueValue.equalsIgnoreCase("True"));
-
- }
-
-
-
-}
diff --git a/src/test/java/com/att/nsa/cambria/transaction/impl/JUnitTestSuite.java b/src/test/java/com/att/nsa/cambria/transaction/impl/JUnitTestSuite.java
deleted file mode 100644
index c18ac8e..0000000
--- a/src/test/java/com/att/nsa/cambria/transaction/impl/JUnitTestSuite.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP Policy Engine
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed 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.
- * ============LICENSE_END=========================================================
- */
-
-package com.att.nsa.cambria.transaction.impl;
-
-import junit.framework.TestSuite;
-
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-import org.junit.runners.Suite.SuiteClasses;
-import org.apache.log4j.Logger;
-
-@RunWith(Suite.class)
-@SuiteClasses({ DMaaPSimpleTransactionFactoryTest.class, })
-public class JUnitTestSuite {
- private static final Logger LOGGER = Logger.getLogger(JUnitTestSuite.class);
-
- public static void main(String[] args) {
- LOGGER.info("Running the test suite");
-
- TestSuite tstSuite = new TestSuite();
- LOGGER.info("Total Test Counts " + tstSuite.countTestCases());
- }
-
-}
diff --git a/src/test/java/com/att/nsa/cambria/transaction/impl/TestRunner.java b/src/test/java/com/att/nsa/cambria/transaction/impl/TestRunner.java
deleted file mode 100644
index 430509e..0000000
--- a/src/test/java/com/att/nsa/cambria/transaction/impl/TestRunner.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP Policy Engine
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed 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.
- * ============LICENSE_END=========================================================
- */
-
-package com.att.nsa.cambria.transaction.impl;
-
-import org.junit.runner.JUnitCore;
-import org.junit.runner.Result;
-import org.junit.runner.notification.Failure;
-import org.apache.log4j.Logger;
-
-public class TestRunner {
- private static final Logger LOGGER = Logger.getLogger(TestRunner.class);
-
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Result result = JUnitCore.runClasses(JUnitTestSuite.class);
- for (Failure failure : result.getFailures()) {
- LOGGER.info(failure.toString());
-
- }
- LOGGER.info(result.wasSuccessful());
- }
-
-}