org.apache.zeppelin.dep.DependencyResolverTest.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.zeppelin.dep.DependencyResolverTest.java

Source

/*
 * 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.zeppelin.dep;

import static org.junit.Assert.assertEquals;

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Collections;

import org.apache.commons.io.FileUtils;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.sonatype.aether.RepositoryException;

public class DependencyResolverTest {
    private static DependencyResolver resolver;
    private static String testPath;
    private static File testCopyPath;
    private static File tmpDir;

    @Rule
    public ExpectedException expectedException = ExpectedException.none();

    @BeforeClass
    public static void setUp() throws Exception {
        tmpDir = new File(System.getProperty("java.io.tmpdir") + "/ZeppelinLTest_" + System.currentTimeMillis());
        testPath = tmpDir.getAbsolutePath() + "/test-repo";
        testCopyPath = new File(tmpDir, "test-copy-repo");
        resolver = new DependencyResolver(testPath);
    }

    @AfterClass
    public static void tearDown() throws Exception {
        FileUtils.deleteDirectory(tmpDir);
    }

    @Rule
    public final ExpectedException exception = ExpectedException.none();

    @Test
    public void testAddRepo() {
        int reposCnt = resolver.getRepos().size();
        resolver.addRepo("securecentral", "https://repo1.maven.org/maven2", false);
        assertEquals(reposCnt + 1, resolver.getRepos().size());
    }

    @Test
    public void testDelRepo() {
        int reposCnt = resolver.getRepos().size();
        resolver.delRepo("securecentral");
        resolver.delRepo("badId");
        assertEquals(reposCnt - 1, resolver.getRepos().size());
    }

    @Test
    public void testLoad() throws Exception {
        // basic load
        resolver.load("com.databricks:spark-csv_2.10:1.3.0", testCopyPath);
        assertEquals(testCopyPath.list().length, 4);
        FileUtils.cleanDirectory(testCopyPath);

        // load with exclusions parameter
        resolver.load("com.databricks:spark-csv_2.10:1.3.0",
                Collections.singletonList("org.scala-lang:scala-library"), testCopyPath);
        assertEquals(testCopyPath.list().length, 3);
        FileUtils.cleanDirectory(testCopyPath);

        // load from added repository
        resolver.addRepo("sonatype", "https://oss.sonatype.org/content/repositories/agimatec-releases/", false);
        resolver.load("com.agimatec:agimatec-validation:0.9.3", testCopyPath);
        assertEquals(testCopyPath.list().length, 8);

        // load invalid artifact
        resolver.delRepo("sonatype");
        exception.expect(RepositoryException.class);
        resolver.load("com.agimatec:agimatec-validation:0.9.3", testCopyPath);
    }

    @Test
    public void should_throw_exception_if_dependency_not_found() throws Exception {
        expectedException.expectMessage("Source 'one.two:1.0' does not exist");
        expectedException.expect(FileNotFoundException.class);

        resolver.load("one.two:1.0", testCopyPath);
    }

}