blob: 9fc8e83655b610651d2913139d8628d2022b3d7c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.apache.sling.pipes.it;
import java.io.IOException;
import java.util.HashMap;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import org.jsoup.Jsoup;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.ops4j.pax.exam.junit.PaxExam;
import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
import org.ops4j.pax.exam.spi.reactors.PerClass;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
@RunWith(PaxExam.class)
@ExamReactorStrategy(PerClass.class)
public class PlumberServletIT extends PipesTestSupport {
private final GsonBuilder gsonBuilder = new GsonBuilder();
private static final Logger LOGGER = LoggerFactory.getLogger(PlumberServletIT.class);
@Test
public void testListComponentJson() throws IOException {
final String url = String.format("http://localhost:%s/etc/pipes-it/another-list.json", httpPort());
LOGGER.info("fetching {}", url);
final String response = Jsoup.connect(url).header("Authorization", basicAuthorizationHeader(ADMIN_CREDENTIALS)).ignoreContentType(true).execute().body();
LOGGER.info("retrieved following response {}", response);
final Gson gson = gsonBuilder.create();
final HashMap main = gson.fromJson(response, HashMap.class);
assertTrue("there should be an items key", main.containsKey("items"));
assertTrue("there should be a size key", main.containsKey("size"));
assertEquals("there should be 2 elements", 2, ((Double) main.get("size")).intValue());
}
}