Skip to content

Commit

Permalink
fix: conflicts, add merged tests class
Browse files Browse the repository at this point in the history
  • Loading branch information
emptyOVO committed Sep 5, 2024
1 parent 1f7374e commit f33af6d
Show file tree
Hide file tree
Showing 12 changed files with 403 additions and 1,933 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
TestLogFunction.class, TestLog10Function.class, TestMd5Function.class, TestModuloFunction.class,
TestPiFunction.class, TestPowerFunction.class, TestRadiansFunction.class, TestRandFunction.class,
TestRoundFunction.class, TestSha2Function.class, TestShaFunction.class, TestSignFunction.class,
TestSinFunction.class, TestSinhFunction.class, TestSqrtFunction.class, TestTanFunction.class
TestSinFunction.class, TestSinhFunction.class, TestSqrtFunction.class, TestTanFunction.class,
TestAsinFunction.class, TestAtanFunction.class, TestAtan2Function.class, TestCoshFunction.class,
TestCoshFunction.class, TestTanhFunction.class
})
public class TestArithmeticFunctionsProcessor {
}
Original file line number Diff line number Diff line change
@@ -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.inlong.sdk.transform.process.function.arithmetic;

import org.apache.inlong.sdk.transform.decode.SourceDecoderFactory;
import org.apache.inlong.sdk.transform.encode.SinkEncoderFactory;
import org.apache.inlong.sdk.transform.pojo.TransformConfig;
import org.apache.inlong.sdk.transform.process.TransformProcessor;

import org.junit.Assert;
import org.junit.Test;

import java.util.List;

public class TestAsinFunction extends AbstractFunctionArithmeticTestBase {

@Test
public void testAsinFunction() throws Exception {
String transformSql = "select asin(numeric1) from source";
TransformConfig config = new TransformConfig(transformSql);
TransformProcessor<String, String> processor = TransformProcessor
.create(config, SourceDecoderFactory.createCsvDecoder(csvSource),
SinkEncoderFactory.createKvEncoder(kvSink));

// case1: asin(0.5)
List<String> output1 = processor.transform("0.5|4|6|8");
Assert.assertEquals(1, output1.size());
Assert.assertEquals(output1.get(0), "result=0.5235987755982989");

// case2: asin(0)
List<String> output2 = processor.transform("0|4|6|8");
Assert.assertEquals(1, output2.size());
Assert.assertEquals(output2.get(0), "result=0.0");

// case3: asin(-0.5)
List<String> output3 = processor.transform("-0.5|4|6|8");
Assert.assertEquals(1, output3.size());
Assert.assertEquals(output3.get(0), "result=-0.5235987755982989");
}
}
Original file line number Diff line number Diff line change
@@ -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.inlong.sdk.transform.process.function.arithmetic;

import org.apache.inlong.sdk.transform.decode.SourceDecoderFactory;
import org.apache.inlong.sdk.transform.encode.SinkEncoderFactory;
import org.apache.inlong.sdk.transform.pojo.TransformConfig;
import org.apache.inlong.sdk.transform.process.TransformProcessor;

import org.junit.Assert;
import org.junit.Test;

import java.util.List;

public class TestAtan2Function extends AbstractFunctionArithmeticTestBase {

@Test
public void testAtan2Function() throws Exception {
String transformSql = "select atan2(numeric1, numeric2) from source";
TransformConfig config = new TransformConfig(transformSql);
TransformProcessor<String, String> processor = TransformProcessor
.create(config, SourceDecoderFactory.createCsvDecoder(csvSource),
SinkEncoderFactory.createKvEncoder(kvSink));

// case1: atan2(1, 1)
List<String> output1 = processor.transform("1|1|6|8");
Assert.assertEquals(1, output1.size());
Assert.assertEquals(output1.get(0), "result=0.7853981633974483");

// case2: atan2(1, 0)
List<String> output2 = processor.transform("1|0|6|8");
Assert.assertEquals(1, output2.size());
Assert.assertEquals(output2.get(0), "result=1.5707963267948966");

// case3: atan2(0, -1)
List<String> output3 = processor.transform("0|-1|6|8");
Assert.assertEquals(1, output3.size());
Assert.assertEquals(output3.get(0), "result=3.141592653589793");
}
}
Original file line number Diff line number Diff line change
@@ -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.inlong.sdk.transform.process.function.arithmetic;

import org.apache.inlong.sdk.transform.decode.SourceDecoderFactory;
import org.apache.inlong.sdk.transform.encode.SinkEncoderFactory;
import org.apache.inlong.sdk.transform.pojo.TransformConfig;
import org.apache.inlong.sdk.transform.process.TransformProcessor;

import org.junit.Assert;
import org.junit.Test;

import java.util.List;

public class TestAtanFunction extends AbstractFunctionArithmeticTestBase {

@Test
public void testAtanFunction() throws Exception {
String transformSql = "select atan(numeric1) from source";
TransformConfig config = new TransformConfig(transformSql);
TransformProcessor<String, String> processor = TransformProcessor
.create(config, SourceDecoderFactory.createCsvDecoder(csvSource),
SinkEncoderFactory.createKvEncoder(kvSink));

// case1: atan(1)
List<String> output1 = processor.transform("1|4|6|8");
Assert.assertEquals(1, output1.size());
Assert.assertEquals(output1.get(0), "result=0.7853981633974483");

// case2: atan(0)
List<String> output2 = processor.transform("0|4|6|8");
Assert.assertEquals(1, output2.size());
Assert.assertEquals(output2.get(0), "result=0.0");

// case3: atan(-1)
List<String> output3 = processor.transform("-1|4|6|8");
Assert.assertEquals(1, output3.size());
Assert.assertEquals(output3.get(0), "result=-0.7853981633974483");
}
}
Original file line number Diff line number Diff line change
@@ -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.inlong.sdk.transform.process.function.arithmetic;

import org.apache.inlong.sdk.transform.decode.SourceDecoderFactory;
import org.apache.inlong.sdk.transform.encode.SinkEncoderFactory;
import org.apache.inlong.sdk.transform.pojo.TransformConfig;
import org.apache.inlong.sdk.transform.process.TransformProcessor;

import org.junit.Assert;
import org.junit.Test;

import java.util.List;

public class TestCoshFunction extends AbstractFunctionArithmeticTestBase {

@Test
public void testCoshFunction() throws Exception {
String transformSql = "select cosh(numeric1) from source";
TransformConfig config = new TransformConfig(transformSql);
TransformProcessor<String, String> processor = TransformProcessor
.create(config, SourceDecoderFactory.createCsvDecoder(csvSource),
SinkEncoderFactory.createKvEncoder(kvSink));

// case1: cosh(1)
List<String> output1 = processor.transform("1|4|6|8");
Assert.assertEquals(1, output1.size());
Assert.assertEquals(output1.get(0), "result=1.543080634815244");

// case2: cosh(0)
List<String> output2 = processor.transform("0|4|6|8");
Assert.assertEquals(1, output2.size());
Assert.assertEquals(output2.get(0), "result=1.0");

// case3: cosh(-1)
List<String> output3 = processor.transform("-1|4|6|8");
Assert.assertEquals(1, output3.size());
Assert.assertEquals(output3.get(0), "result=1.543080634815244");
}
}
Original file line number Diff line number Diff line change
@@ -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.inlong.sdk.transform.process.function.arithmetic;

import org.apache.inlong.sdk.transform.decode.SourceDecoderFactory;
import org.apache.inlong.sdk.transform.encode.SinkEncoderFactory;
import org.apache.inlong.sdk.transform.pojo.TransformConfig;
import org.apache.inlong.sdk.transform.process.TransformProcessor;

import org.junit.Assert;
import org.junit.Test;

import java.util.List;
public class TestCotFunction extends AbstractFunctionArithmeticTestBase {

@Test
public void testCotFunction() throws Exception {
String transformSql = "select cot(numeric1) from source";
TransformConfig config = new TransformConfig(transformSql);
TransformProcessor<String, String> processor = TransformProcessor
.create(config, SourceDecoderFactory.createCsvDecoder(csvSource),
SinkEncoderFactory.createKvEncoder(kvSink));

// case1: cot(1)
List<String> output1 = processor.transform("1|4|6|8");
Assert.assertEquals(1, output1.size());
Assert.assertEquals(output1.get(0), "result=0.6420926159343306");

// case2: cot(0.5)
List<String> output2 = processor.transform("0.5|4|6|8");
Assert.assertEquals(1, output2.size());
Assert.assertEquals(output2.get(0), "result=1.830487721712452");

// case3: cot(-1)
List<String> output3 = processor.transform("-1|4|6|8");
Assert.assertEquals(1, output3.size());
Assert.assertEquals(output3.get(0), "result=-0.6420926159343306");
}
}
Original file line number Diff line number Diff line change
@@ -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.inlong.sdk.transform.process.function.arithmetic;

import org.apache.inlong.sdk.transform.decode.SourceDecoderFactory;
import org.apache.inlong.sdk.transform.encode.SinkEncoderFactory;
import org.apache.inlong.sdk.transform.pojo.TransformConfig;
import org.apache.inlong.sdk.transform.process.TransformProcessor;

import org.junit.Assert;
import org.junit.Test;

import java.util.List;

public class TestTanhFunction extends AbstractFunctionArithmeticTestBase {

@Test
public void testTanhFunction() throws Exception {
String transformSql = "select tanh(numeric1) from source";
TransformConfig config = new TransformConfig(transformSql);
TransformProcessor<String, String> processor = TransformProcessor
.create(config, SourceDecoderFactory.createCsvDecoder(csvSource),
SinkEncoderFactory.createKvEncoder(kvSink));

// case1: tanh(1)
List<String> output1 = processor.transform("1|4|6|8");
Assert.assertEquals(1, output1.size());
Assert.assertEquals(output1.get(0), "result=0.7615941559557649");

// case2: tanh(0)
List<String> output2 = processor.transform("0|4|6|8");
Assert.assertEquals(1, output2.size());
Assert.assertEquals(output2.get(0), "result=0.0");

// case3: tanh(-1)
List<String> output3 = processor.transform("-1|4|6|8");
Assert.assertEquals(1, output3.size());
Assert.assertEquals(output3.get(0), "result=-0.7615941559557649");
}
}
Loading

0 comments on commit f33af6d

Please sign in to comment.