2f9e82cf9fa47d0a42efd7ec048a6c874ff5f7db
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / config / RICInstanceMockConfiguration.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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.oransc.ric.portal.dashboard.config;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.oransc.ric.portal.dashboard.model.RicInstance;
27 import org.oransc.ric.portal.dashboard.model.RicInstanceList;
28 import org.springframework.context.annotation.Bean;
29 import org.springframework.context.annotation.Profile;
30 import org.springframework.stereotype.Component;
31
32 /**
33  * Publishes a mock list of RIC instances.
34  */
35 @Component
36 @Profile("test")
37 public class RICInstanceMockConfiguration {
38
39         // Publish constants for use in tests
40         public static final String INSTANCE_KEY_1 = "i1";
41         public static final String INSTANCE_KEY_2 = "i2";
42
43         @Bean
44         public RicInstanceList ricInstanceList() {
45                 List<RicInstance> instances = new ArrayList<>();
46                 RicInstance i1 = new RicInstance().key(INSTANCE_KEY_1).name("Friendly Name One")
47                                 .appUrlPrefix("http://foo.bar/app").pltUrlPrefix("http://foo.bar/plt")
48                                 .caasUrlPrefix("http://foo.bar/caas");
49                 instances.add(i1);
50                 RicInstance i2 = new RicInstance().key(INSTANCE_KEY_2).name("Friendly Name Two")
51                                 .appUrlPrefix("http://foo.bar/2/app").pltUrlPrefix("http://foo.bar/2/plt")
52                                 .caasUrlPrefix("http://foo.bar/2/caas");
53                 instances.add(i2);
54                 return new RicInstanceList(instances);
55         }
56
57 }