Github user tgravescs commented on a diff in the pull request:

    https://github.com/apache/spark/pull/560#discussion_r13862215
  
    --- Diff: 
yarn/common/src/test/scala/org/apache/spark/deploy/yarn/ClientBaseSuite.scala 
---
    @@ -68,6 +77,65 @@ class ClientBaseSuite extends FunSuite {
         }
       }
     
    +  private val SPARK = "local:/sparkJar"
    +  private val USER = "local:/userJar"
    +  private val ADDED = "local:/addJar1,local:/addJar2,/addJar3"
    +
    +  test("Local jar URIs") {
    +    val conf = new Configuration()
    +    val sparkConf = new SparkConf().set(ClientBase.CONF_SPARK_JAR, SPARK)
    +    val env = new MutableHashMap[String, String]()
    +    val args = new ClientArguments(Array("--jar", USER, "--addJars", 
ADDED), sparkConf)
    +
    +    ClientBase.populateClasspath(args, conf, sparkConf, env, None)
    +
    +    val jars = env("CLASSPATH").split(File.pathSeparator)
    +    s"$SPARK,$USER,$ADDED".split(",").foreach({ jar =>
    +      val uri = new URI(jar)
    +      if (ClientBase.LOCAL_SCHEME.equals(uri.getScheme())) {
    +        jars should contain (uri.getPath())
    +      } else {
    +        jars should not contain (uri.getPath())
    +      }
    +    })
    +    jars should not contain (ClientBase.SPARK_JAR)
    +    jars should not contain (ClientBase.APP_JAR)
    +  }
    +
    +  test("Jar path propagation through SparkConf") {
    +    val conf = new Configuration()
    +    val sparkConf = new SparkConf().set(ClientBase.CONF_SPARK_JAR, SPARK)
    +    val yarnConf = new YarnConfiguration()
    +    val args = new ClientArguments(Array("--jar", USER, "--addJars", 
ADDED), sparkConf)
    +
    +    val client = spy(new DummyClient(args, conf, sparkConf, yarnConf))
    +    doReturn(new Path("/")).when(client).copyRemoteFile(any(classOf[Path]),
    +      any(classOf[Path]), anyShort(), anyBoolean())
    +
    +    var tempDir = Files.createTempDir();
    +    try {
    +      client.prepareLocalResources(tempDir.getAbsolutePath())
    +      sparkConf.getOption(ClientBase.CONF_SPARK_USER_JAR) should be 
(Some(USER))
    +
    +      // The non-local path should be propagated by name only, since it 
will end up in the app's
    +      // staging dir.
    +      val expected = ADDED.split(",")
    +        .map(p => {
    +          val uri = new URI(p)
    +          if (ClientBase.LOCAL_SCHEME == uri.getScheme()) {
    +            p
    +          } else {
    +            Option(uri.getFragment()).getOrElse(new File(p).getName())
    +          }
    +        })
    +        .mkString(",")
    +
    +      sparkConf.getOption(ClientBase.CONF_SPARK_YARN_SECONDARY_JARS) 
should be (Some(expected))
    +    } finally {
    +      Utils.deleteRecursively(tempDir)
    +    }
    +  }
    +
    --- End diff --
    
    can you please add a test for PWD/*


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to