Improve error's message readability
[sdc.git] / openecomp-be / backend / openecomp-sdc-vendor-software-product-manager / src / test / java / org / openecomp / sdc / vendorsoftwareproduct / errors / VendorSoftwareProductInvalidErrorBuilderTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 Samsung. 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.openecomp.sdc.vendorsoftwareproduct.errors;
22
23 import static org.junit.Assert.assertEquals;
24
25 import org.junit.jupiter.api.Test;
26 import org.openecomp.sdc.common.errors.ErrorCategory;
27 import org.openecomp.sdc.common.errors.ErrorCode;
28 import org.openecomp.sdc.versioning.dao.types.Version;
29
30 class VendorSoftwareProductInvalidErrorBuilderTest {
31
32     @Test
33     void testVendorSoftwareProductMissingServiceModelErrorBuilder() {
34         //when
35         ErrorCode errorCode = VendorSoftwareProductInvalidErrorBuilder
36             .vendorSoftwareProductMissingServiceModelErrorBuilder("1",
37                 Version.valueOf("1.1"));
38
39         //then
40         assertEquals(VendorSoftwareProductErrorCodes.VSP_INVALID, errorCode.id());
41         assertEquals(ErrorCategory.APPLICATION, errorCode.category());
42         assertEquals("Vendor software product with Id 1 and version null is invalid - does not contain service model.",
43             errorCode.message());
44     }
45
46     @Test
47     void testVspMissingDeploymentFlavorErrorBuilder() {
48         //when
49         ErrorCode errorCode = VendorSoftwareProductInvalidErrorBuilder.vspMissingDeploymentFlavorErrorBuilder();
50
51         //then
52         assertEquals(VendorSoftwareProductErrorCodes.VSP_INVALID, errorCode.id());
53         assertEquals(ErrorCategory.APPLICATION, errorCode.category());
54         assertEquals(
55             "VSP has to have a minimum of one Deployment Flavor defined for being able to be instantiated.Please add a "
56                 + "Deployment Flavor and re-submit the VSP.", errorCode.message());
57     }
58 }