mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-29 18:58:05 +08:00
parent
2e81f30298
commit
818648df7d
@ -17,7 +17,6 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.api.parameters;
|
||||
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.enums.Direct;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.Property;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.ResourceInfo;
|
||||
@ -25,6 +24,8 @@ import org.apache.dolphinscheduler.plugin.task.api.parameters.resource.ResourceP
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
@ -92,7 +93,8 @@ public abstract class AbstractParameters implements IParameters {
|
||||
Map<String, Property> localParametersMaps = new LinkedHashMap<>();
|
||||
if (localParams != null) {
|
||||
for (Property property : localParams) {
|
||||
if (Objects.equals(Direct.IN, property.getDirect())) {
|
||||
// The direct of some tasks is empty, default IN
|
||||
if (property.getDirect() == null || Objects.equals(Direct.IN, property.getDirect())) {
|
||||
localParametersMaps.put(property.getProp(), property);
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,54 @@
|
||||
/*
|
||||
* 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.plugin.task.api.parameters;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.enums.DataType;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.enums.Direct;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.model.Property;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
public class AbstractParametersTest {
|
||||
|
||||
@Test
|
||||
public void testGetInputLocalParametersMap() {
|
||||
AbstractParameters parameters = new AbstractParameters() {
|
||||
@Override
|
||||
public boolean checkParameters() {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
List<Property> localParams = new ArrayList<>();
|
||||
localParams.add(new Property("key1", null, null, "value1"));
|
||||
localParams.add(new Property("key2", Direct.IN, DataType.VARCHAR, "value2"));
|
||||
localParams.add(new Property("key3", Direct.OUT, DataType.VARCHAR, null));
|
||||
parameters.setLocalParams(localParams);
|
||||
|
||||
// should return property key1 and key2 (direct null and IN)
|
||||
Map<String, Property> inputLocalParametersMap = parameters.getInputLocalParametersMap();
|
||||
|
||||
Assert.assertEquals(2, inputLocalParametersMap.size());
|
||||
Assert.assertTrue(inputLocalParametersMap.containsKey("key1"));
|
||||
Assert.assertTrue(inputLocalParametersMap.containsKey("key2"));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user