use of org.apache.twill.filesystem.LocalLocationFactory in project cdap by caskdata.
the class AuthorizationTestBase method setup.
@BeforeClass
public static void setup() throws IOException {
CCONF.set(Constants.CFG_LOCAL_DATA_DIR, TEMPORARY_FOLDER.newFolder().getAbsolutePath());
CCONF.setBoolean(Constants.Security.ENABLED, true);
CCONF.setBoolean(Constants.Security.Authorization.ENABLED, true);
locationFactory = new LocalLocationFactory(TEMPORARY_FOLDER.newFolder());
}
use of org.apache.twill.filesystem.LocalLocationFactory in project cdap by caskdata.
the class CLIMainTest method createPluginJarFile.
private static File createPluginJarFile(Class<?> cls) throws IOException {
File tmpFolder = TMP_FOLDER.newFolder();
LocationFactory locationFactory = new LocalLocationFactory(tmpFolder);
Location deploymentJar = AppJarHelper.createDeploymentJar(locationFactory, cls);
File appJarFile = new File(tmpFolder, String.format("%s-1.0.jar", cls.getSimpleName()));
Files.copy(Locations.newInputSupplier(deploymentJar), appJarFile);
return appJarFile;
}
use of org.apache.twill.filesystem.LocalLocationFactory in project cdap by caskdata.
the class BaseHiveExploreServiceTest method initialize.
protected static void initialize(CConfiguration cConf, TemporaryFolder tmpFolder, boolean useStandalone, boolean enableAuthorization) throws Exception {
if (!runBefore) {
return;
}
Configuration hConf = new Configuration();
if (enableAuthorization) {
LocationFactory locationFactory = new LocalLocationFactory(tmpFolder.newFolder());
Location authExtensionJar = AppJarHelper.createDeploymentJar(locationFactory, InMemoryAuthorizer.class);
cConf.setBoolean(Constants.Security.ENABLED, true);
cConf.setBoolean(Constants.Security.Authorization.ENABLED, true);
cConf.set(Constants.Security.Authorization.EXTENSION_JAR_PATH, authExtensionJar.toURI().getPath());
cConf.setBoolean(Constants.Security.KERBEROS_ENABLED, false);
cConf.setInt(Constants.Security.Authorization.CACHE_MAX_ENTRIES, 0);
}
List<Module> modules = useStandalone ? createStandaloneModules(cConf, hConf, tmpFolder) : createInMemoryModules(cConf, hConf, tmpFolder);
injector = Guice.createInjector(modules);
if (enableAuthorization) {
injector.getInstance(AuthorizationBootstrapper.class).run();
}
transactionManager = injector.getInstance(TransactionManager.class);
transactionManager.startAndWait();
transactionSystemClient = injector.getInstance(TransactionSystemClient.class);
dsOpService = injector.getInstance(DatasetOpExecutor.class);
dsOpService.startAndWait();
datasetService = injector.getInstance(DatasetService.class);
datasetService.startAndWait();
exploreExecutorService = injector.getInstance(ExploreExecutorService.class);
exploreExecutorService.startAndWait();
datasetFramework = injector.getInstance(DatasetFramework.class);
exploreClient = injector.getInstance(DiscoveryExploreClient.class);
exploreService = injector.getInstance(ExploreService.class);
exploreClient.ping();
notificationService = injector.getInstance(NotificationService.class);
notificationService.startAndWait();
streamService = injector.getInstance(StreamService.class);
streamService.startAndWait();
streamHttpService = injector.getInstance(StreamHttpService.class);
streamHttpService.startAndWait();
exploreTableManager = injector.getInstance(ExploreTableManager.class);
streamAdmin = injector.getInstance(StreamAdmin.class);
streamMetaStore = injector.getInstance(StreamMetaStore.class);
namespaceAdmin = injector.getInstance(NamespaceAdmin.class);
namespacedLocationFactory = injector.getInstance(NamespacedLocationFactory.class);
// create namespaces
// This happens when you create a namespace via REST APIs. However, since we do not start AppFabricServer in
// Explore tests, simulating that scenario by explicitly calling DatasetFramework APIs.
createNamespace(NamespaceId.DEFAULT);
createNamespace(NAMESPACE_ID);
createNamespace(OTHER_NAMESPACE_ID);
}
use of org.apache.twill.filesystem.LocalLocationFactory in project cdap by caskdata.
the class NettyRouterPipelineTest method deploy.
//Deploy word count app n times.
private void deploy(int num) throws Exception {
String path = String.format("http://%s:%d/v1/deploy", HOSTNAME, ROUTER.getServiceMap().get(GATEWAY_NAME));
LocationFactory lf = new LocalLocationFactory(TMP_FOLDER.newFolder());
Location programJar = AppJarHelper.createDeploymentJar(lf, AppWritingtoStream.class);
GATEWAY_SERVER.setExpectedJarBytes(ByteStreams.toByteArray(Locations.newInputSupplier(programJar)));
for (int i = 0; i < num; i++) {
LOG.info("Deploying {}/{}", i, num);
URL url = new URL(path);
HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
urlConn.setRequestProperty("X-Archive-Name", "Purchase-1.0.0.jar");
urlConn.setRequestMethod("POST");
urlConn.setDoOutput(true);
urlConn.setDoInput(true);
ByteStreams.copy(Locations.newInputSupplier(programJar), urlConn.getOutputStream());
Assert.assertEquals(200, urlConn.getResponseCode());
urlConn.getInputStream().close();
urlConn.disconnect();
}
}
use of org.apache.twill.filesystem.LocalLocationFactory in project cdap by caskdata.
the class ExplodeJarHttpHandlerTest method init.
@BeforeClass
public static void init() throws Exception {
URL jarUrl = ExplodeJarHttpHandlerTest.class.getResource("/CountRandomWebapp-localhost.jar");
Assert.assertNotNull(jarUrl);
jarHttpHandler = new ExplodeJarHttpHandler(new LocalLocationFactory().create(jarUrl.toURI()));
jarHttpHandler.init(new BasicHandlerContext(null));
}
Aggregations