2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.aai.schemaservice.nodeschema;
23 import static org.junit.jupiter.api.Assertions.assertEquals;
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;
34 import org.onap.aai.schemaservice.nodeschema.SchemaVersion;
36 @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
37 @Import(WebClientConfiguration.class)
38 public class NodeSchemaChecksumResourceTest {
44 SchemaVersions schemaVersions;
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"));
54 public void thatChecksumsCanBeRetrieved() {
55 ChecksumResponse response = client.get()
56 .uri("/v1/nodes/checksums")
58 .expectStatus().isOk()
59 .returnResult(ChecksumResponse.class)
62 assertEquals(schemaVersions.getVersions().size(), response.getChecksumMap().size());