Repository: spark
Updated Branches:
  refs/heads/master d3cbd38c3 -> 7138816ab


[SPARK-5937][YARN] Fix ClientSuite to set YARN mode, so that the correct class 
is used in t...

...ests.

Without this SparkHadoopUtil is used by the Client instead of 
YarnSparkHadoopUtil.

Author: Hari Shreedharan <hshreedha...@apache.org>

Closes #4711 from harishreedharan/SPARK-5937 and squashes the following commits:

d154de6 [Hari Shreedharan] Use System.clearProperty() instead of setting the 
value of SPARK_YARN_MODE to empty string.
f729f70 [Hari Shreedharan] Fix ClientSuite to set YARN mode, so that the 
correct class is used in tests.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7138816a
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/7138816a
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/7138816a

Branch: refs/heads/master
Commit: 7138816abe1060a1e967c4c77c72d5752586d557
Parents: d3cbd38
Author: Hari Shreedharan <hshreedha...@apache.org>
Authored: Sat Feb 21 10:01:01 2015 -0800
Committer: Andrew Or <and...@databricks.com>
Committed: Sat Feb 21 10:01:01 2015 -0800

----------------------------------------------------------------------
 .../org/apache/spark/deploy/yarn/ClientSuite.scala     | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/7138816a/yarn/src/test/scala/org/apache/spark/deploy/yarn/ClientSuite.scala
----------------------------------------------------------------------
diff --git a/yarn/src/test/scala/org/apache/spark/deploy/yarn/ClientSuite.scala 
b/yarn/src/test/scala/org/apache/spark/deploy/yarn/ClientSuite.scala
index f8f8129..92f04b4 100644
--- a/yarn/src/test/scala/org/apache/spark/deploy/yarn/ClientSuite.scala
+++ b/yarn/src/test/scala/org/apache/spark/deploy/yarn/ClientSuite.scala
@@ -28,8 +28,7 @@ import org.apache.hadoop.yarn.api.records._
 import org.apache.hadoop.yarn.conf.YarnConfiguration
 import org.mockito.Matchers._
 import org.mockito.Mockito._
-import org.scalatest.FunSuite
-import org.scalatest.Matchers
+import org.scalatest.{BeforeAndAfterAll, FunSuite, Matchers}
 
 import scala.collection.JavaConversions._
 import scala.collection.mutable.{ HashMap => MutableHashMap }
@@ -39,7 +38,15 @@ import scala.util.Try
 import org.apache.spark.{SparkException, SparkConf}
 import org.apache.spark.util.Utils
 
-class ClientSuite extends FunSuite with Matchers {
+class ClientSuite extends FunSuite with Matchers with BeforeAndAfterAll {
+
+  override def beforeAll(): Unit = {
+    System.setProperty("SPARK_YARN_MODE", "true")
+  }
+
+  override def afterAll(): Unit = {
+    System.clearProperty("SPARK_YARN_MODE")
+  }
 
   test("default Yarn application classpath") {
     Client.getDefaultYarnApplicationClasspath should 
be(Some(Fixtures.knownDefYarnAppCP))


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to