Browse Source
* change the return type of getHostWeight Co-authored-by: ywang46 <ywang46@paypal.com>2.0.7-release
Yao WANG
3 years ago
committed by
lenboo
3 changed files with 65 additions and 9 deletions
@ -0,0 +1,47 @@
|
||||
/* |
||||
* 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.dolphinscheduler.server.master.dispatch.host; |
||||
|
||||
import org.apache.dolphinscheduler.server.master.registry.ServerNodeManager; |
||||
|
||||
import org.junit.Assert; |
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.mockito.InjectMocks; |
||||
import org.mockito.Mock; |
||||
import org.mockito.junit.MockitoJUnitRunner; |
||||
|
||||
/** |
||||
* RefreshResourceTask test |
||||
*/ |
||||
@RunWith(MockitoJUnitRunner.class) |
||||
public class RefreshResourceTaskTest { |
||||
|
||||
@Mock |
||||
private ServerNodeManager serverNodeManager; |
||||
|
||||
@InjectMocks |
||||
LowerWeightHostManager lowerWeightHostManager; |
||||
|
||||
@Test |
||||
public void testGetHostWeightWithResult() { |
||||
Assert.assertTrue(!lowerWeightHostManager.new RefreshResourceTask() |
||||
.getHostWeight("192.168.1.1:22", "default", null) |
||||
.isPresent()); |
||||
} |
||||
} |
Loading…
Reference in new issue