aboutsummaryrefslogtreecommitdiffstats
path: root/odl-aaa-moon/aaa/aaa-idp-mapping/src/test/java/org/opendaylight/aaa/idpmapping/TokenTest.java
blob: d6181051d106f7a535174667b8e41e3b5fb62f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * Copyright (c) 2016 Red Hat, Inc.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */

package org.opendaylight.aaa.idpmapping;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import org.junit.Test;

public class TokenTest {

    private final Map<String, Object> namespace = new HashMap<String, Object>() {
        {
            put("foo1", new HashMap<String, String>() {
                {
                    put("0", "1");
                }
            });
        }
    };
    private Object input = "$foo1[0]";
    private Token token = new Token(input, namespace);
    private Token mapToken = new Token(namespace, namespace);

    @Test
    public void testToken() {
        assertEquals(token.toString(), input);
        assertTrue(token.storageType == TokenStorageType.VARIABLE);
        assertEquals(mapToken.toString(), "{foo1={0=1}}");
        assertTrue(mapToken.storageType == TokenStorageType.CONSTANT);
    }

    @Test
    public void testClassify() {
        assertEquals(Token.classify(new ArrayList<>()), TokenType.ARRAY);
        assertEquals(Token.classify(true), TokenType.BOOLEAN);
        assertEquals(Token.classify(new Long(365)), TokenType.INTEGER);
        assertEquals(Token.classify(new HashMap<String, Object>()), TokenType.MAP);
        assertEquals(Token.classify(null), TokenType.NULL);
        assertEquals(Token.classify(365.00), TokenType.REAL);
        assertEquals(Token.classify("foo_str"), TokenType.STRING);
    }

    @Test
    public void testGet() {
        assertNotNull(token.get());
        assertTrue(token.get("0") == "1");
        assertNotNull(mapToken.get());
        assertTrue(mapToken.get(0) == namespace);
    }

    @Test
    public void testGetMapValue() {
        assertTrue(mapToken.getMapValue() == namespace);
    }
}