aboutsummaryrefslogtreecommitdiffstats
path: root/odl-aaa-moon/aaa/aaa-authn/src/test/java/org/opendaylight/aaa/PasswordCredentialTest.java
blob: 2dabb77b32a9292aac613279d47880e3b7d7f3c0 (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
/*
 * Copyright (c) 2014, 2015 Hewlett-Packard Development Company, L.P. and others.  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;

import static org.junit.Assert.assertEquals;

import java.util.HashSet;
import org.junit.Test;
import org.opendaylight.aaa.api.PasswordCredentials;

public class PasswordCredentialTest {

    @Test
    public void testBuilder() {
        PasswordCredentials pc1 = new PasswordCredentialBuilder().setUserName("bob")
                .setPassword("secrete").build();
        assertEquals("bob", pc1.username());
        assertEquals("secrete", pc1.password());

        PasswordCredentials pc2 = new PasswordCredentialBuilder().setUserName("bob")
                .setPassword("secrete").build();
        assertEquals(pc1, pc2);

        PasswordCredentials pc3 = new PasswordCredentialBuilder().setUserName("bob")
                .setPassword("secret").build();
        HashSet<PasswordCredentials> pcs = new HashSet<>();
        pcs.add(pc1);
        pcs.add(pc2);
        pcs.add(pc3);
        assertEquals(2, pcs.size());
    }

}