/** * 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.ambari.view.pig.test; import org.apache.ambari.view.ViewContext; import org.apache.ambari.view.ViewResourceHandler; import org.apache.ambari.view.pig.BasePigTest; import org.apache.ambari.view.pig.resources.scripts.ScriptService; import org.apache.ambari.view.utils.UserLocal; import org.apache.ambari.view.utils.hdfs.HdfsApi; import org.apache.ambari.view.utils.hdfs.HdfsApiException; import org.junit.*; import org.junit.rules.ExpectedException; import javax.ws.rs.core.Response; import java.io.File; import java.util.HashMap; import java.util.Map; import static org.easymock.EasyMock.*; /** * Tests without HDFS and predefined properties */ public class ScriptTestUnmanaged extends BasePigTest { @Rule public ExpectedException thrown = ExpectedException.none(); private ScriptService scriptService; private File pigStorageFile; private File baseDir; @AfterClass public static void shutDown() throws Exception { UserLocal.dropAllConnections(HdfsApi.class); } @Before public void setUp() throws Exception { handler = createNiceMock(ViewResourceHandler.class); context = createNiceMock(ViewContext.class); baseDir = new File(DATA_DIRECTORY) .getAbsoluteFile(); pigStorageFile = new File("./target/BasePigTest/storage.dat") .getAbsoluteFile(); } private Response doCreateScript(String title, String path) { return ScriptTest.doCreateScript(title, path, scriptService); } @Test public void createScriptAutoCreateNoDefaultFS() { Map<String, String> properties = new HashMap<String, String>(); properties.put("dataworker.storagePath", pigStorageFile.toString()); properties.put("scripts.dir", "/tmp/.pigscripts"); expect(context.getProperties()).andReturn(properties).anyTimes(); expect(context.getUsername()).andReturn("ambari-qa").anyTimes(); replay(handler, context); scriptService = getService(ScriptService.class, handler, context); thrown.expect(HdfsApiException.class); doCreateScript("Test", null); } }