blob: 4b324633d41dd939bf6a9d6c520b416bc45b96c4 [file] [log] [blame]
/*
* Copyright (c) 2014, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.glassfish.jersey.examples.helloworld;
import javax.ws.rs.client.Invocation;
import javax.ws.rs.core.Response;
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.test.JerseyTest;
import org.glassfish.jersey.test.TestProperties;
import org.jboss.weld.environment.se.Weld;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
/**
* Test for the {@link AppScopedResource} JAX-RS resource class.
*
* @author Jakub Podlesak
*/
public class AppScopedResourceTest extends JerseyTest {
Weld weld;
@Override
public void setUp() throws Exception {
weld = new Weld();
weld.initialize();
super.setUp();
}
@Override
public void tearDown() throws Exception {
weld.shutdown();
super.tearDown();
}
@Override
protected ResourceConfig configure() {
// mvn test -Djersey.config.test.container.factory=org.glassfish.jersey.test.inmemory.InMemoryTestContainerFactory
// mvn test -Djersey.config.test.container.factory=org.glassfish.jersey.test.grizzly.GrizzlyTestContainerFactory
// mvn test -Djersey.config.test.container.factory=org.glassfish.jersey.test.jdkhttp.JdkHttpServerTestContainerFactory
// mvn test -Djersey.config.test.container.factory=org.glassfish.jersey.test.simple.SimpleTestContainerFactory
enable(TestProperties.LOG_TRAFFIC);
// enable(TestProperties.DUMP_ENTITY);
return App.createJaxRsApp();
}
@Test
public void testCounter() {
final Invocation.Builder counter = target().path("app/count").request("text/plain");
Response response = counter.get();
assertEquals(200, response.getStatus());
int c1 = response.readEntity(Integer.class);
int c2 = counter.get(Integer.class);
int c3 = counter.get(Integer.class);
assertTrue(c1 < c2);
assertTrue(c2 < c3);
}
}