Package org.apache.ambari.view.pig.test

Source Code of org.apache.ambari.view.pig.test.ScriptTestHDFSUnmanaged

/**
* 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.HDFSTest;
import org.apache.ambari.view.pig.persistence.InstanceKeyValueStorage;
import org.apache.ambari.view.pig.persistence.Storage;
import org.apache.ambari.view.pig.resources.files.FileService;
import org.apache.ambari.view.pig.resources.scripts.ScriptService;
import org.apache.ambari.view.pig.persistence.utils.StorageUtil;
import org.apache.ambari.view.pig.resources.scripts.models.PigScript;
import org.apache.ambari.view.pig.services.BaseService;
import org.apache.ambari.view.pig.utils.MisconfigurationFormattedException;
import org.apache.ambari.view.pig.utils.NotFoundFormattedException;
import org.json.simple.JSONObject;
import org.junit.*;
import org.junit.rules.ExpectedException;

import javax.ws.rs.core.Response;

import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;

import static org.easymock.EasyMock.*;

public class ScriptTestHDFSUnmanaged extends HDFSTest {
  private ScriptService scriptService;
  @Rule public ExpectedException thrown = ExpectedException.none();

  @BeforeClass
  public static void startUp() throws Exception {
    HDFSTest.startUp(); // super
  }

  @AfterClass
  public static void shutDown() throws Exception {
    HDFSTest.shutDown(); // super
    FileService.setHdfsApi(null); //cleanup API connection
  }

  @Override
  @Before
  public void setUp() throws Exception {
    handler = createNiceMock(ViewResourceHandler.class);
    context = createNiceMock(ViewContext.class);
    FileService.setHdfsApi(null); //cleanup API connection
    StorageUtil.setStorage(null);
  }

  @Test
  public void createScriptAutoCreateNoScriptsPath() throws IOException, InterruptedException {
    Map<String, String> properties = new HashMap<String, String>();
    baseDir = new File(DATA_DIRECTORY)
        .getAbsoluteFile();
    pigStorageFile = new File("./target/BasePigTest/storage.dat")
        .getAbsoluteFile();

    properties.put("dataworker.storagePath", pigStorageFile.toString());
//        properties.put("dataworker.scripts.path", "/tmp/.pigscripts");
    properties.put("dataworker.defaultFs", hdfsURI);

    expect(context.getProperties()).andReturn(properties).anyTimes();
    expect(context.getUsername()).andReturn("ambari-qa").anyTimes();

    replay(handler, context);
    scriptService = getService(ScriptService.class, handler, context);

    thrown.expect(MisconfigurationFormattedException.class);
    doCreateScript("Test", null);
  }

  @Test
  public void createScriptAutoCreateUsername() throws IOException, InterruptedException {
    Map<String, String> properties = new HashMap<String, String>();
    baseDir = new File(DATA_DIRECTORY)
        .getAbsoluteFile();
    pigStorageFile = new File("./target/BasePigTest/storage.dat")
        .getAbsoluteFile();

    properties.put("dataworker.storagePath", pigStorageFile.toString());
    properties.put("dataworker.scripts.path", "/tmp/.pigscripts");
    properties.put("dataworker.defaultFs", hdfsURI);

    expect(context.getProperties()).andReturn(properties).anyTimes();
    expect(context.getUsername()).andReturn("ambari-qa").anyTimes();

    replay(handler, context);
    scriptService = getService(ScriptService.class, handler, context);

    Response createdScript = doCreateScript("Test", null);
    String createdScriptPath = ((PigScript) ((JSONObject) createdScript.getEntity()).get("script")).getPigScript();
    Assert.assertTrue(createdScriptPath.startsWith("/tmp/.pigscripts/ambari-qa/"));

    properties.put("dataworker.username", "luke");
    Response createdScript2 = doCreateScript("Test", null);
    String createdScriptPath2 = ((PigScript) ((JSONObject) createdScript2.getEntity()).get("script")).getPigScript();
    Assert.assertTrue(createdScriptPath2.startsWith("/tmp/.pigscripts/luke/"));
  }

  @Test
  public void createScriptAutoCreateNoStoragePath() throws IOException, InterruptedException {
    Map<String, String> properties = new HashMap<String, String>();
    baseDir = new File(DATA_DIRECTORY)
        .getAbsoluteFile();
    pigStorageFile = new File("./target/BasePigTest/storage.dat")
        .getAbsoluteFile();

//        properties.put("dataworker.storagePath", pigStorageFile.toString());
    properties.put("dataworker.scripts.path", "/tmp/.pigscripts");
    properties.put("dataworker.defaultFs", hdfsURI);

    expect(context.getProperties()).andReturn(properties).anyTimes();
    expect(context.getUsername()).andReturn("ambari-qa").anyTimes();

    replay(handler, context);

    Storage storage = StorageUtil.getStorage(context);
    Assert.assertEquals(InstanceKeyValueStorage.class.getSimpleName(), storage.getClass().getSimpleName());
  }

  @Test
  public void hdfsApiNoUsernameProvided() throws IOException, InterruptedException {
    Map<String, String> properties = new HashMap<String, String>();
    properties.put("dataworker.defaultFs", hdfsURI);

    expect(context.getProperties()).andReturn(properties).anyTimes();
    expect(context.getUsername()).andReturn("ambari-qa").anyTimes();

    replay(context);

    // no dataworker.hdfs.username property
    Assert.assertEquals("ambari-qa", BaseService.getHdfsUsername(context));

    // with dataworker.hdfs.username property
    properties.put("dataworker.hdfs.username", "luke");
    Assert.assertEquals("luke", BaseService.getHdfsUsername(context));
  }

  private Response doCreateScript(String title, String path) {
    return ScriptTest.doCreateScript(title, path, scriptService);
  }
}
TOP

Related Classes of org.apache.ambari.view.pig.test.ScriptTestHDFSUnmanaged

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.