Java tutorial
/** * Licensed to the Austrian Association for Software Tool Integration (AASTI) * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. The AASTI licenses this file to you 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.openengsb.opencit.ui.web; import static org.mockito.Matchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import java.util.ArrayList; import java.util.Collection; import java.util.Hashtable; import java.util.Map; import org.apache.wicket.Page; import org.apache.wicket.Request; import org.apache.wicket.Response; import org.apache.wicket.Session; import org.apache.wicket.protocol.http.WebApplication; import org.apache.wicket.util.tester.WicketTester; import org.junit.Before; import org.mockito.invocation.InvocationOnMock; import org.mockito.stubbing.Answer; import org.openengsb.core.api.OsgiUtilsService; import org.openengsb.core.common.util.DefaultOsgiUtilsService; import org.openengsb.core.test.AbstractOsgiMockServiceTest; import org.openengsb.ui.common.OpenEngSBWebSession; import org.ops4j.pax.wicket.test.spring.ApplicationContextMock; import org.ops4j.pax.wicket.test.spring.PaxWicketSpringBeanComponentInjector; import org.osgi.framework.BundleContext; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.authentication.BadCredentialsException; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.Authentication; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.authority.GrantedAuthorityImpl; public abstract class AbstractCitPageTest extends AbstractOsgiMockServiceTest { private WicketTester tester; protected ApplicationContextMock appContext = new ApplicationContextMock(); protected abstract Map<String, Object> getBeansForAppContextAsMap(); protected BundleContext bundleContext; protected DefaultOsgiUtilsService serviceUtils; @Before public void setup() { Map<String, Object> mockedBeans = getBeansForAppContextAsMap(); for (String key : mockedBeans.keySet()) { appContext.putBean(key, mockedBeans.get(key)); } mockAuthentication(); tester = new WicketTester(new WebApplication() { @Override protected void init() { super.init(); addComponentInstantiationListener( new PaxWicketSpringBeanComponentInjector(this, appContext, false)); } @Override public Class<? extends Page> getHomePage() { return Index.class; } @SuppressWarnings("serial") @Override public Session newSession(Request request, Response response) { return new OpenEngSBWebSession(request) { @Override protected AuthenticationManager getAuthenticationManager() { // TODO Auto-generated method stub return null; } }; } }); } private void mockAuthentication() { AuthenticationManager authManager = mock(AuthenticationManager.class); final Collection<GrantedAuthority> authorities = new ArrayList<GrantedAuthority>(); authorities.add(new GrantedAuthorityImpl("ROLE_USER")); when(authManager.authenticate(any(Authentication.class))).thenAnswer(new Answer<Authentication>() { @Override public Authentication answer(InvocationOnMock invocation) { Authentication auth = (Authentication) invocation.getArguments()[0]; if (auth.getCredentials().equals("password")) { return new UsernamePasswordAuthenticationToken(auth.getPrincipal(), auth.getCredentials(), authorities); } throw new BadCredentialsException("wrong password"); } }); appContext.putBean("authenticationManager", authManager); } public WicketTester getTester() { return tester; } @Override protected void setBundleContext(BundleContext bundleContext) { serviceUtils = new DefaultOsgiUtilsService(); serviceUtils.setBundleContext(bundleContext); registerService(serviceUtils, new Hashtable<String, Object>(), OsgiUtilsService.class); this.bundleContext = bundleContext; appContext.putBean(serviceUtils); } }