Package org.drools.guvnor.client.explorer.navigation.modules

Source Code of org.drools.guvnor.client.explorer.navigation.modules.GlobalAreaTreeItemTest

/*
* Copyright 2011 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.drools.guvnor.client.explorer.navigation.modules;

import com.google.gwt.user.client.rpc.AsyncCallback;
import org.drools.guvnor.client.explorer.ClientFactory;
import org.drools.guvnor.client.explorer.navigation.NavigationViewFactory;
import org.drools.guvnor.client.explorer.navigation.modules.GlobalAreaTreeItem;
import org.drools.guvnor.client.explorer.navigation.modules.GlobalAreaTreeItemView;
import org.drools.guvnor.client.rpc.Module;
import org.drools.guvnor.client.rpc.ModuleServiceAsync;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Matchers;

import static org.mockito.Mockito.*;

public class GlobalAreaTreeItemTest {

    private GlobalAreaTreeItemView view;
    private GlobalAreaTreeItem presenter;
    private NavigationViewFactory navigationViewFactory;
    private ModuleServiceAsync packageService;

    @Before
    public void setUp() throws Exception {
        view = mock( GlobalAreaTreeItemView.class );
        ClientFactory clientFactory = mock( ClientFactory.class );
        navigationViewFactory = mock( NavigationViewFactory.class );
        when(
                clientFactory.getNavigationViewFactory()
        ).thenReturn(
                navigationViewFactory
        );
        when(
                navigationViewFactory.getGlobalAreaTreeItemView()
        ).thenReturn(
                view
        );

        packageService = mock( ModuleServiceAsync.class );
        when(
                clientFactory.getModuleService()
        ).thenReturn(
                packageService
        );

        presenter = new GlobalAreaTreeItem( clientFactory );
    }

    @Test
    public void testSetUp() throws Exception {
        verify( navigationViewFactory ).getGlobalAreaTreeItemView();
        verify( view ).setPresenter( presenter );
        verify( packageService ).loadGlobalModule( Matchers.<AsyncCallback<Module>>any() );
    }
}
TOP

Related Classes of org.drools.guvnor.client.explorer.navigation.modules.GlobalAreaTreeItemTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.