/* * 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.launchpad.webapp.integrationtest.repository; import static org.junit.Assert.assertTrue; import java.io.IOException; import org.apache.sling.commons.testing.integration.HttpTest; import org.apache.sling.launchpad.testservices.repository.FirstRepositoryInitializer; import org.apache.sling.launchpad.testservices.repository.SecondRepositoryInitializer; import org.junit.After; import org.junit.Before; import org.junit.Test; /** Verify that the SlingRepositoryInitializer provided by our test * services bundle have run. */ public class RepositoryInitializersTest { private final HttpTest H = new HttpTest(); @Before public void setup() throws Exception { H.setUp(); } @After public void cleanup() throws Exception { H.tearDown(); } @Test public void checkSignalProperty() throws IOException { final String path = FirstRepositoryInitializer.SIGNAL_NODE_PATH + "/" + SecondRepositoryInitializer.class.getSimpleName() + ".txt"; final String url = HttpTest.HTTP_BASE_URL + path; final String content = H.getContent(url, HttpTest.CONTENT_TYPE_PLAIN); assertTrue("Expecting a numeric value at " + path + ", got " + content, Long.valueOf(content) > 0); } }