blob: 0c0efacb07c97fef8ae21d6c93c799d84aee0491 [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.felix.karaf.shell.itests;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.ops4j.pax.exam.CoreOptions.bootClasspathLibrary;
import static org.ops4j.pax.exam.CoreOptions.felix;
import static org.ops4j.pax.exam.CoreOptions.options;
import static org.ops4j.pax.exam.CoreOptions.systemPackages;
import static org.ops4j.pax.exam.CoreOptions.systemProperty;
import static org.ops4j.pax.exam.CoreOptions.equinox;
import org.ops4j.pax.exam.Option;
import org.ops4j.pax.exam.junit.Configuration;
import org.ops4j.pax.exam.junit.JUnit4TestRunner;
import org.osgi.framework.Bundle;
import org.osgi.service.command.CommandProcessor;
import org.osgi.service.command.CommandSession;
@RunWith(JUnit4TestRunner.class)
public class CoreTest extends AbstractIntegrationTest {
@Test
public void testHelp() throws Exception {
Thread.sleep(5000);
CommandProcessor cp = getOsgiService(CommandProcessor.class);
CommandSession cs = cp.createSession(System.in, System.out, System.err);
cs.execute("osgi:list --help");
cs.close();
}
@Test
public void testInstallCommand() throws Exception {
Thread.sleep(5000);
CommandProcessor cp = getOsgiService(CommandProcessor.class);
CommandSession cs = cp.createSession(System.in, System.out, System.err);
try {
cs.execute("log:display");
fail("command should not exist");
} catch (IllegalArgumentException e) {
assertTrue(e.getMessage().indexOf("Command not found") >= 0);
}
Bundle b = getInstalledBundle("org.apache.felix.karaf.shell.log");
b.start();
Thread.sleep(1000);
cs.execute("log:display");
b.stop();
Thread.sleep(1000);
try {
cs.execute("log:display");
fail("command should not exist");
} catch (IllegalArgumentException e) {
assertTrue(e.getMessage().indexOf("Command not found") >= 0);
}
cs.close();
}
// @Test
// public void testCommandGroup() throws Exception {
// Thread.sleep(5000);
//
// Shell shell = getOsgiService(Shell.class);
// shell.execute("osgi");
// shell.execute("help");
// shell.execute("..");
// }
//
// @Test
// public void testCommandGroupAfterInstall() throws Exception {
// Bundle b = getInstalledBundle("org.apache.felix.karaf.shell.log");
// b.start();
//
// Thread.sleep(5000);
//
// Shell shell = getOsgiService(Shell.class);
// shell.execute("log");
// shell.execute("help");
// shell.execute("..");
// }
//
@Configuration
public static Option[] configuration() {
Option[] options = options(
// this is how you set the default log level when using pax logging (logProfile)
systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level").value("DEBUG"),
systemProperty("karaf.name").value("root"),
systemProperty("karaf.home").value("target/karaf.home"),
systemProperty("karaf.base").value("target/karaf.home"),
systemProperty("karaf.startLocalConsole").value("false"),
systemProperty("karaf.startRemoteShell").value("false"),
// hack system packages
systemPackages("org.apache.felix.karaf.main.spi;version=1.0.0", "org.apache.felix.karaf.jaas.boot;version=0.9.0"),
bootClasspathLibrary(mavenBundle("org.apache.felix.karaf.jaas", "org.apache.felix.karaf.jaas.boot")).afterFramework(),
bootClasspathLibrary(mavenBundle("org.apache.felix.karaf", "org.apache.felix.karaf.main")).afterFramework(),
// Log
mavenBundle("org.ops4j.pax.logging", "pax-logging-api"),
mavenBundle("org.ops4j.pax.logging", "pax-logging-service"),
// Felix Config Admin
mavenBundle("org.apache.felix", "org.apache.felix.configadmin"),
// Blueprint
mavenBundle("org.apache.geronimo.blueprint", "geronimo-blueprint"),
// Bundles
mavenBundle("org.apache.mina", "mina-core"),
mavenBundle("org.apache.sshd", "sshd-core"),
mavenBundle("org.apache.felix.karaf.jaas", "org.apache.felix.karaf.jaas.config"),
mavenBundle("org.apache.felix.gogo", "org.apache.felix.gogo.runtime"),
mavenBundle("org.apache.felix.karaf.shell", "org.apache.felix.karaf.shell.console"),
mavenBundle("org.apache.felix.karaf.shell", "org.apache.felix.karaf.shell.osgi"),
mavenBundle("org.apache.felix.karaf.shell", "org.apache.felix.karaf.shell.log").noStart(),
equinox()
);
return options;
}
}