b22940d6ddbe2882ca7ff916232a8af72ed51bd8
[aai/schema-service.git] /
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2024 Deutsche Telekom. 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.aai.schemaservice.nodeschema;
22
23 import static org.junit.jupiter.api.Assertions.assertEquals;
24
25 import org.junit.jupiter.api.BeforeAll;
26 import org.junit.jupiter.api.Test;
27 import org.onap.aai.exceptions.AAIException;
28 import org.onap.aai.schemaservice.WebClientConfiguration;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.boot.test.context.SpringBootTest;
31 import org.springframework.context.annotation.Import;
32 import org.springframework.test.web.reactive.server.WebTestClient;
33
34 import org.onap.aai.schemaservice.nodeschema.SchemaVersion;
35
36 @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
37 @Import(WebClientConfiguration.class)
38 public class NodeSchemaChecksumResourceTest {
39
40   @Autowired
41   WebTestClient client;
42
43   @Autowired
44   SchemaVersions schemaVersions;
45
46   @BeforeAll
47   public static void setupConfig() throws AAIException {
48     System.setProperty("AJSC_HOME", "./");
49     System.setProperty("BUNDLECONFIG_DIR", "src/main/resources/");
50     System.out.println("Current directory: " + System.getProperty("user.dir"));
51   }
52
53   @Test
54   public void thatChecksumsCanBeRetrieved() {
55     ChecksumResponse response = client.get()
56         .uri("/v1/nodes/checksums")
57         .exchange()
58         .expectStatus().isOk()
59         .returnResult(ChecksumResponse.class)
60         .getResponseBody()
61         .blockFirst();
62     assertEquals(schemaVersions.getVersions().size(), response.getChecksumMap().size());
63   }
64
65 }