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

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

/**
* 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.pig.HDFSTest;
import org.apache.ambari.view.pig.resources.files.FileService;
import org.apache.ambari.view.pig.resources.scripts.ScriptService;
import org.apache.ambari.view.pig.resources.scripts.models.PigScript;
import org.json.simple.JSONObject;
import org.junit.*;

import javax.servlet.http.HttpServletResponse;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.UriBuilder;
import javax.ws.rs.core.UriInfo;
import java.io.File;
import java.net.URI;
import java.util.List;
import java.util.Map;

import static org.easymock.EasyMock.*;

public class ScriptTest extends HDFSTest {
    private ScriptService scriptService;

    @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 {
        super.setUp();
        scriptService = getService(ScriptService.class, handler, context);
    }

    @Override
    protected void setupProperties(Map<String, String> properties, File baseDir) throws Exception {
        super.setupProperties(properties, baseDir);
        properties.put("dataworker.scripts.path", "/tmp/.pigscripts");
    }

    private Response doCreateScript() {
        return doCreateScript("Luke", "/tmp/luke.pig", scriptService);
    }

    public static Response doCreateScript(String title, String path, ScriptService scriptService) {
        ScriptService.PigScriptRequest request = new ScriptService.PigScriptRequest();
        request.script = new PigScript();
        request.script.setTitle(title);
        request.script.setPigScript(path);

        UriInfo uriInfo = createNiceMock(UriInfo.class);
        URI uri = UriBuilder.fromUri("http://host/a/b").build();
        expect(uriInfo.getAbsolutePath()).andReturn(uri);

        HttpServletResponse resp_obj = createNiceMock(HttpServletResponse.class);

        resp_obj.setHeader(eq("Location"), anyString());

        replay(uriInfo, resp_obj);
        return scriptService.saveScript(request, resp_obj, uriInfo);
    }

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

    @Test
    public void createScript() {
        Response response = doCreateScript();
        Assert.assertEquals(201, response.getStatus());

        JSONObject obj = (JSONObject)response.getEntity();
        Assert.assertTrue(obj.containsKey("script"));
        Assert.assertNotNull(((PigScript) obj.get("script")).getId());
        Assert.assertFalse(((PigScript) obj.get("script")).getId().isEmpty());
    }

    @Test
    public void createScriptAutoCreate() {
        Response response = doCreateScript("Test", null);
        Assert.assertEquals(201, response.getStatus());

        JSONObject obj = (JSONObject)response.getEntity();
        Assert.assertTrue(obj.containsKey("script"));
        Assert.assertNotNull(((PigScript) obj.get("script")).getId());
        Assert.assertFalse(((PigScript) obj.get("script")).getId().isEmpty());
        Assert.assertFalse(((PigScript) obj.get("script")).getPigScript().isEmpty());
    }

    @Test
    public void scriptNotFound() {
        Response response2 = scriptService.getScript("4242");
        Assert.assertEquals(404, response2.getStatus());
    }

    @Test
    public void updateScript() {
        Response createdScript = doCreateScript();
        String createdScriptId = ((PigScript) ((JSONObject) createdScript.getEntity()).get("script")).getId();

        ScriptService.PigScriptRequest request = new ScriptService.PigScriptRequest();
        request.script = new PigScript();
        request.script.setTitle("Updated Script");

        Response response = scriptService.updateScript(request, createdScriptId);
        Assert.assertEquals(204, response.getStatus());

        Response response2 = scriptService.getScript(createdScriptId);
        Assert.assertEquals(200, response2.getStatus());

        JSONObject obj = ((JSONObject) response2.getEntity());
        Assert.assertTrue(obj.containsKey("script"));
        Assert.assertEquals(((PigScript) obj.get("script")).getTitle(), request.script.getTitle());
    }

    @Test
    public void deleteScript() {
        Response createdScript = doCreateScript();
        String createdScriptId = ((PigScript) ((JSONObject) createdScript.getEntity()).get("script")).getId();

        Response response = scriptService.deleteScript(createdScriptId);
        Assert.assertEquals(204, response.getStatus());

        Response response2 = scriptService.getScript(createdScriptId);
        Assert.assertEquals(404, response2.getStatus());
    }

    @Test
    public void listScripts() {
        Response createdScript1 = doCreateScript("Title 1", "/path/to/file.pig");
        Response createdScript2 = doCreateScript("Title 2", "/path/to/file.pig");
        String createdScriptId = ((PigScript) ((JSONObject) createdScript1.getEntity()).get("script")).getId();

        Response response = scriptService.getScriptList();
        Assert.assertEquals(200, response.getStatus());

        JSONObject obj = (JSONObject) response.getEntity();
        Assert.assertTrue(obj.containsKey("scripts"));
        List<PigScript> scripts = (List<PigScript>) obj.get("scripts");
        boolean containsTitle = false;
        for(PigScript script : scripts)
            containsTitle = containsTitle || script.getTitle().compareTo("Title 1") == 0;
        Assert.assertTrue(containsTitle);

        containsTitle = false;
        for(PigScript script : scripts)
            containsTitle = containsTitle || script.getTitle().compareTo("Title 2") == 0;
        Assert.assertTrue(containsTitle);
    }
}
TOP

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

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.