Catalog alignment
[sdc.git] / catalog-fe / src / test / java / org / openecomp / sdc / fe / impl / ImportMetadataTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 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  * Modifications copyright (c) 2019 Nokia
20  * ================================================================================
21  */
22 package org.openecomp.sdc.fe.impl;
23
24 import org.junit.Test;
25
26 import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
27 import static org.hamcrest.core.IsEqual.equalTo;
28 import static org.junit.Assert.assertThat;
29
30 public class ImportMetadataTest {
31
32         private static final String CHECKSUM = "CHECKSUM";
33         private static final String CREATOR = "CREATOR";
34         private static final String MIME = "MIME";
35         private static final long SIZE = 123L;
36         private static final String NAME = "name";
37
38         @Test
39         public void shouldHaveValidGettersAndSetters() {
40                 assertThat(ImportMetadata.class, hasValidGettersAndSetters());
41         }
42
43         @Test
44         public void testConstructor() {
45                 ImportMetadata importMetadata = new ImportMetadata(NAME, SIZE, MIME, CREATOR, CHECKSUM);
46                 assertThat(importMetadata.getCreator(), equalTo(CREATOR));
47                 assertThat(importMetadata.getMd5Checksum(), equalTo(CHECKSUM));
48                 assertThat(importMetadata.getMime(), equalTo(MIME));
49                 assertThat(importMetadata.getName(), equalTo(NAME));
50                 assertThat(importMetadata.getSize(), equalTo(SIZE));
51         }
52
53 }