/** * Copyright 2014-2017 Linagora, Université Joseph Fourier, Floralis * * The present code is developed in the scope of the joint LINAGORA - * Université Joseph Fourier - Floralis research program and is designated * as a "Result" pursuant to the terms and conditions of the LINAGORA * - Université Joseph Fourier - Floralis research program. Each copyright * holder of Results enumerated here above fully & independently holds complete * ownership of the complete Intellectual Property rights applicable to the whole * of said Results, and may freely exploit it in any manner which does not infringe * the moral rights of the other copyright holders. * * 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 net.roboconf.dm.rest.client.delegates; import java.net.URI; import java.util.List; import javax.ws.rs.core.UriBuilder; import org.glassfish.grizzly.http.server.HttpServer; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; import com.sun.jersey.api.container.grizzly2.GrizzlyServerFactory; import net.roboconf.core.model.runtime.Preference; import net.roboconf.dm.internal.test.TestManagerWrapper; import net.roboconf.dm.internal.test.TestTargetResolver; import net.roboconf.dm.management.Manager; import net.roboconf.dm.rest.client.WsClient; import net.roboconf.dm.rest.services.internal.RestApplication; import net.roboconf.messaging.api.MessagingConstants; /** * @author Vincent Zurczak - Linagora */ public class PreferencesWsDelegateTest { @Rule public TemporaryFolder folder = new TemporaryFolder(); private static final String REST_URI = "http://localhost:8090"; private WsClient client; private Manager manager; private TestManagerWrapper managerWrapper; private HttpServer httpServer; @After public void after() { this.manager.stop(); if( this.httpServer != null ) this.httpServer.stop(); if( this.client != null ) this.client.destroy(); } @Before public void before() throws Exception { // Create the manager this.manager = new Manager(); this.manager.setTargetResolver( new TestTargetResolver()); this.manager.setMessagingType(MessagingConstants.FACTORY_TEST); this.manager.configurationMngr().setWorkingDirectory( this.folder.newFolder()); this.manager.start(); // Create the wrapper and complete configuration this.managerWrapper = new TestManagerWrapper( this.manager ); this.managerWrapper.configureMessagingForTest(); this.manager.reconfigure(); // Prepare the client URI uri = UriBuilder.fromUri( REST_URI ).build(); RestApplication restApp = new RestApplication( this.manager ); this.httpServer = GrizzlyServerFactory.createHttpServer( uri, restApp ); this.client = new WsClient( REST_URI ); } @Test public void testListPreferences() throws Exception { List<Preference> prefs = this.client.getPreferencesWsDelegate().listPreferences(); Assert.assertNotNull( prefs ); Assert.assertNotEquals( 0, prefs.size()); } }