Implant vid-app-common org.onap.vid.job (main and test)
[vid.git] / vid-app-common / src / test / java / org / onap / vid / model / JobAuditStatusTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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
21 package org.onap.vid.model;
22
23 import org.apache.commons.lang3.StringUtils;
24 import org.testng.annotations.DataProvider;
25 import org.testng.annotations.Test;
26
27 import java.util.Date;
28 import java.util.UUID;
29
30 import static org.hamcrest.CoreMatchers.is;
31 import static org.hamcrest.MatcherAssert.assertThat;
32
33 public class JobAuditStatusTest {
34
35     @DataProvider
36     public static Object[][] AdditionalInfoSizes() {
37         return new Object[][]{
38             {5, 5},
39             {1999,1999},
40             {2000, 2000},
41             {2001, 2000},
42             {10000, 2000}
43         };
44     }
45
46     @Test(dataProvider = "AdditionalInfoSizes")
47     public void testAdditionalInfoMaxLength(int originalSize, int finalSize) {
48         JobAuditStatus jobAuditStatus = new JobAuditStatus();
49         jobAuditStatus.setAdditionalInfo(StringUtils.repeat("a", originalSize));
50         assertThat(jobAuditStatus.getAdditionalInfo().length(), is(finalSize));
51     }
52
53     @Test(dataProvider = "AdditionalInfoSizes")
54     public void testAdditionalInfoMaxLengthInConstructor(int originalSize, int finalSize) {
55         final String additionalInfo = StringUtils.repeat("a", originalSize);
56         JobAuditStatus jobAuditStatus = JobAuditStatus.createForTest(UUID.randomUUID(), "myJobStatus", JobAuditStatus.SourceStatus.MSO, UUID.randomUUID(), additionalInfo, new Date());
57         assertThat(jobAuditStatus.getAdditionalInfo().length(), is(finalSize));
58     }
59
60 }