Java tutorial
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.wildfly.test.extras.jolokia; import java.io.InputStreamReader; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpUriRequest; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; /** * @author <a href="mailto:ales.justin@jboss.org">Ales Justin</a> */ @RunWith(Arquillian.class) public class SmokeTest { @Deployment public static JavaArchive getDeployment() { return ShrinkWrap.create(JavaArchive.class); } @Test @RunAsClient public void testVersion() throws Exception { try (CloseableHttpClient client = HttpClients.createDefault()) { HttpUriRequest request = new HttpGet("http://localhost:8778/jolokia/version"); try (CloseableHttpResponse response = client.execute(request)) { Assert.assertEquals(200, response.getStatusLine().getStatusCode()); JSONParser parser = new JSONParser(); JSONObject result = (JSONObject) parser .parse(new InputStreamReader(response.getEntity().getContent())); Assert.assertNotNull(result); Assert.assertTrue(Number.class.cast(result.get("timestamp")).longValue() > 0); } } } }