Browse Source
* Adapting partial code(file name start with F) to the sonar cloud rule * add more unit test * add License * add includes configuration to maven-surefire-plugin * fix getResourceFilesList incorrect logicpull/2/head
gabry.wu
5 years ago
committed by
GitHub
10 changed files with 97 additions and 44 deletions
@ -0,0 +1,55 @@
|
||||
/* |
||||
* 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.common.task; |
||||
|
||||
import org.apache.dolphinscheduler.common.process.ResourceInfo; |
||||
import org.apache.dolphinscheduler.common.task.flink.FlinkParameters; |
||||
import org.junit.Assert; |
||||
import org.junit.Test; |
||||
|
||||
import java.util.LinkedList; |
||||
import java.util.List; |
||||
|
||||
public class FlinkParametersTest { |
||||
@Test |
||||
public void getResourceFilesList() { |
||||
FlinkParameters flinkParameters = new FlinkParameters(); |
||||
Assert.assertNotNull(flinkParameters.getResourceFilesList()); |
||||
Assert.assertTrue(flinkParameters.getResourceFilesList().isEmpty()); |
||||
|
||||
ResourceInfo mainResource = new ResourceInfo(); |
||||
mainResource.setRes("testFlinkMain-1.0.0-SNAPSHOT.jar"); |
||||
flinkParameters.setMainJar(mainResource); |
||||
|
||||
List<ResourceInfo> resourceInfos = new LinkedList<>(); |
||||
ResourceInfo resourceInfo1 = new ResourceInfo(); |
||||
resourceInfo1.setRes("testFlinkParameters1.jar"); |
||||
resourceInfos.add(resourceInfo1); |
||||
|
||||
flinkParameters.setResourceList(resourceInfos); |
||||
Assert.assertNotNull(flinkParameters.getResourceFilesList()); |
||||
Assert.assertEquals(2, flinkParameters.getResourceFilesList().size()); |
||||
|
||||
ResourceInfo resourceInfo2 = new ResourceInfo(); |
||||
resourceInfo2.setRes("testFlinkParameters2.jar"); |
||||
resourceInfos.add(resourceInfo2); |
||||
|
||||
flinkParameters.setResourceList(resourceInfos); |
||||
Assert.assertNotNull(flinkParameters.getResourceFilesList()); |
||||
Assert.assertEquals(3, flinkParameters.getResourceFilesList().size()); |
||||
} |
||||
} |
Loading…
Reference in new issue