/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/TestSchedulingPolicy.java

http://github.com/apache/hadoop-common · Java · 128 lines · 78 code · 17 blank · 33 comment · 0 complexity · 098c34f80e64bd6be8dbf6c6fb428014 MD5 · raw file

  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair;
  19. import static org.junit.Assert.assertFalse;
  20. import static org.junit.Assert.assertTrue;
  21. import org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.policies.DominantResourceFairnessPolicy;
  22. import org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.policies.FairSharePolicy;
  23. import org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.policies.FifoPolicy;
  24. import org.junit.Test;
  25. import org.mockito.Mockito;
  26. public class TestSchedulingPolicy {
  27. @Test(timeout = 1000)
  28. public void testParseSchedulingPolicy()
  29. throws AllocationConfigurationException {
  30. // Class name
  31. SchedulingPolicy sm = SchedulingPolicy
  32. .parse(FairSharePolicy.class.getName());
  33. assertTrue("Invalid scheduler name",
  34. sm.getName().equals(FairSharePolicy.NAME));
  35. // Canonical name
  36. sm = SchedulingPolicy.parse(FairSharePolicy.class
  37. .getCanonicalName());
  38. assertTrue("Invalid scheduler name",
  39. sm.getName().equals(FairSharePolicy.NAME));
  40. // Class
  41. sm = SchedulingPolicy.getInstance(FairSharePolicy.class);
  42. assertTrue("Invalid scheduler name",
  43. sm.getName().equals(FairSharePolicy.NAME));
  44. // Shortname - drf
  45. sm = SchedulingPolicy.parse("drf");
  46. assertTrue("Invalid scheduler name",
  47. sm.getName().equals(DominantResourceFairnessPolicy.NAME));
  48. // Shortname - fair
  49. sm = SchedulingPolicy.parse("fair");
  50. assertTrue("Invalid scheduler name",
  51. sm.getName().equals(FairSharePolicy.NAME));
  52. // Shortname - fifo
  53. sm = SchedulingPolicy.parse("fifo");
  54. assertTrue("Invalid scheduler name",
  55. sm.getName().equals(FifoPolicy.NAME));
  56. }
  57. /**
  58. * Trivial tests that make sure
  59. * {@link SchedulingPolicy#isApplicableTo(SchedulingPolicy, byte)} works as
  60. * expected for the possible values of depth
  61. *
  62. * @throws AllocationConfigurationException
  63. */
  64. @Test(timeout = 1000)
  65. public void testIsApplicableTo() throws AllocationConfigurationException {
  66. final String ERR = "Broken SchedulingPolicy#isApplicableTo";
  67. // fifo
  68. SchedulingPolicy policy = SchedulingPolicy.parse("fifo");
  69. assertTrue(ERR,
  70. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_LEAF));
  71. assertFalse(ERR, SchedulingPolicy.isApplicableTo(
  72. SchedulingPolicy.parse("fifo"), SchedulingPolicy.DEPTH_INTERMEDIATE));
  73. assertFalse(ERR, SchedulingPolicy.isApplicableTo(
  74. SchedulingPolicy.parse("fifo"), SchedulingPolicy.DEPTH_ROOT));
  75. // fair
  76. policy = SchedulingPolicy.parse("fair");
  77. assertTrue(ERR,
  78. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_LEAF));
  79. assertTrue(ERR, SchedulingPolicy.isApplicableTo(policy,
  80. SchedulingPolicy.DEPTH_INTERMEDIATE));
  81. assertTrue(ERR,
  82. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_ROOT));
  83. assertTrue(ERR,
  84. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_PARENT));
  85. assertTrue(ERR,
  86. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_ANY));
  87. // drf
  88. policy = SchedulingPolicy.parse("drf");
  89. assertTrue(ERR,
  90. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_LEAF));
  91. assertTrue(ERR, SchedulingPolicy.isApplicableTo(policy,
  92. SchedulingPolicy.DEPTH_INTERMEDIATE));
  93. assertTrue(ERR,
  94. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_ROOT));
  95. assertTrue(ERR,
  96. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_PARENT));
  97. assertTrue(ERR,
  98. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_ANY));
  99. policy = Mockito.mock(SchedulingPolicy.class);
  100. Mockito.when(policy.getApplicableDepth()).thenReturn(
  101. SchedulingPolicy.DEPTH_PARENT);
  102. assertTrue(ERR, SchedulingPolicy.isApplicableTo(policy,
  103. SchedulingPolicy.DEPTH_INTERMEDIATE));
  104. assertTrue(ERR,
  105. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_ROOT));
  106. assertTrue(ERR,
  107. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_PARENT));
  108. assertFalse(ERR,
  109. SchedulingPolicy.isApplicableTo(policy, SchedulingPolicy.DEPTH_ANY));
  110. }
  111. }