[DMaaP DR] JKD 11 migration
[dmaap/datarouter.git] / datarouter-prov / src / test / java / org / onap / dmaap / datarouter / provisioning / beans / PubFailRecordTest.java
1 /*******************************************************************************
2  * ============LICENSE_START==================================================
3  * * org.onap.dmaap
4  * * ===========================================================================
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * * ===========================================================================
7  * * Licensed under the Apache License, Version 2.0 (the "License");
8  * * you may not use this file except in compliance with the License.
9  * * You may obtain a copy of the License at
10  * *
11  *  *      http://www.apache.org/licenses/LICENSE-2.0
12  * *
13  *  * Unless required by applicable law or agreed to in writing, software
14  * * distributed under the License is distributed on an "AS IS" BASIS,
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * * See the License for the specific language governing permissions and
17  * * limitations under the License.
18  * * ============LICENSE_END====================================================
19  * *
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  * *
22  ******************************************************************************/
23 package org.onap.dmaap.datarouter.provisioning.beans;
24
25 import org.junit.Assert;
26 import org.junit.Test;
27 import org.junit.runner.RunWith;
28 import org.powermock.core.classloader.annotations.PowerMockIgnore;
29 import org.powermock.modules.junit4.PowerMockRunner;
30
31 import java.text.ParseException;
32
33 @RunWith(PowerMockRunner.class)
34 @PowerMockIgnore({"com.sun.org.apache.xerces.*", "javax.xml.*", "org.xml.*", "org.w3c.*"})
35 public class PubFailRecordTest {
36
37     private PubFailRecord pubFailRecord;
38
39
40     @Test
41     public void Validate_PubFailRecord_Created_With_Default_Constructor() throws ParseException {
42         String[] args = {"2018-08-29-10-10-10-543.", "PBF", "238465493.fileName",
43                 "1", "/publish/1/fileName", "PUT", "application/octet-stream", "285", "200",
44                 "172.100.0.3", "user1", "403"};
45         pubFailRecord = new PubFailRecord(args);
46
47         Assert.assertEquals("user1", pubFailRecord.getUser());
48         Assert.assertEquals("172.100.0.3", pubFailRecord.getSourceIP());
49         Assert.assertEquals("403", pubFailRecord.getError());
50         Assert.assertEquals(200, pubFailRecord.getContentLengthReceived());
51     }
52 }