aboutsummaryrefslogtreecommitdiffstats
path: root/upstream/odl-aaa-moon/aaa/aaa-authz/aaa-authz-service/src/test/java/org/opendaylight/aaa/authz/srv/AuthzConsumerContextImplTest.java
blob: fb03334174a9391be67f9bebc8372764758806b7 (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
/*
 * Copyright (c) 2014 Cisco Systems, Inc. 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.authz.srv;

import org.junit.Assert;
import org.junit.Before;
import org.mockito.Mockito;
import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
import org.opendaylight.controller.sal.core.api.Broker;
import org.opendaylight.controller.sal.core.api.Provider;

public class AuthzConsumerContextImplTest {

    private Broker.ConsumerSession realconsumercontext;
    private Provider realprovidercontext;
    private AuthzBrokerImpl authzBroker;
    private Broker realbroker;

    @Before
    public void beforeTest() {
        realconsumercontext = Mockito.mock(Broker.ConsumerSession.class);
        realprovidercontext = Mockito.mock(Provider.class);
        realbroker = Mockito.mock(Broker.class);
        realbroker.registerProvider(realprovidercontext);
        authzBroker = Mockito.mock(AuthzBrokerImpl.class);
    }

    @org.junit.Test
    public void testGetService() throws Exception {
        AuthzConsumerContextImpl authzConsumerContext = new AuthzConsumerContextImpl(
                realconsumercontext, authzBroker);

        Assert.assertEquals("Expected Authz session context",
                authzConsumerContext.getService(DOMDataBroker.class).getClass(),
                AuthzDomDataBroker.class);
        // Assert.assertEquals("Expected Authz session context",
        // authzConsumerContext.getService(SchemaService.class).getClass(),
        // SchemaService.class);
    }
}