Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / filter / test / JU_AccessGetter.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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  *
20  */
21
22 package org.onap.aaf.cadi.filter.test;
23
24 import static org.hamcrest.CoreMatchers.is;
25 import static org.junit.Assert.assertThat;
26
27 import java.io.ByteArrayOutputStream;
28 import java.io.PrintStream;
29
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.onap.aaf.cadi.PropAccess;
33 import org.onap.aaf.cadi.filter.AccessGetter;
34
35 public class JU_AccessGetter {
36
37     private static final String tag = "tag";
38     private static final String value = "value";
39
40     private PropAccess access;
41
42     @Before
43     public void setup() {
44         access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
45         access.setProperty(tag, value);
46     }
47
48     @Test
49     public void test() {
50         AccessGetter getter = new AccessGetter(access);
51         assertThat(getter.get(tag, null, false), is(value));
52     }
53
54 }