Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add unit test TestWelfordChangeDetectionProcessor.java #3327

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
/*
* 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.streampipes.processors.changedetection.jvm.welford;

import org.apache.streampipes.model.runtime.Event;
import org.apache.streampipes.model.runtime.EventFactory;
import org.apache.streampipes.model.runtime.SchemaInfo;
import org.apache.streampipes.model.runtime.SourceInfo;
import org.apache.streampipes.model.schema.EventSchema;
import org.apache.streampipes.model.schema.PropertyScope;
import org.apache.streampipes.sdk.builder.PrimitivePropertyBuilder;
import org.apache.streampipes.sdk.builder.adapter.GuessSchemaBuilder;
import org.apache.streampipes.sdk.utils.Datatypes;
import org.apache.streampipes.test.executors.ProcessingElementTestExecutor;
import org.apache.streampipes.test.executors.TestConfiguration;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class TestWelfordChangeDetectionProcessor {
private static final String PROPERTY_NAME = "propertyName";
private WelfordChangeDetection processor;


@BeforeEach
public void setup() {
processor = new WelfordChangeDetection();
}


@Test
public void testWelfordNoChangeDetected() {
TestConfiguration configuration = TestConfiguration.builder()
.configWithDefaultPrefix(WelfordChangeDetection.NUMBER_MAPPING, PROPERTY_NAME)
.config(WelfordChangeDetection.PARAM_K,1.5)
.config(WelfordChangeDetection.PARAM_H,5.0)
.build();

List<Map<String, Object>> inputEvents = List.of(
Map.of(PROPERTY_NAME,10.0f),
Map.of(PROPERTY_NAME,11.0f),
Map.of(PROPERTY_NAME,10.5f)
);

List<Map<String, Object>> outputEvents = List.of(
Map.of(PROPERTY_NAME,10.0f,WelfordEventFields.VAL_LOW.label,0.0, WelfordEventFields.VAL_HIGH.label,0.0,
WelfordEventFields.DECISION_LOW.label,false, WelfordEventFields.DECISION_HIGH.label,false),
Map.of(PROPERTY_NAME,11.0f,WelfordEventFields.VAL_LOW.label,0.0, WelfordEventFields.VAL_HIGH.label,0.0,
WelfordEventFields.DECISION_LOW.label,false, WelfordEventFields.DECISION_HIGH.label,false),
Map.of(PROPERTY_NAME,10.5f,WelfordEventFields.VAL_LOW.label,0.0, WelfordEventFields.VAL_HIGH.label,0.0,
WelfordEventFields.DECISION_LOW.label,false, WelfordEventFields.DECISION_HIGH.label,false)
);

ProcessingElementTestExecutor testExecutor = new ProcessingElementTestExecutor(processor, configuration);

testExecutor.run(inputEvents,outputEvents);
}

@Test
public void testWelfordChangeDetectedHigh(){
TestConfiguration configuration = TestConfiguration.builder()
.configWithDefaultPrefix(WelfordChangeDetection.NUMBER_MAPPING, PROPERTY_NAME)
.config(WelfordChangeDetection.PARAM_K,0.5)
.config(WelfordChangeDetection.PARAM_H,1.0)
.build();

List<Map<String, Object>> inputEvents = List.of(
Map.of(PROPERTY_NAME,10.0f),
Map.of(PROPERTY_NAME, 20.0f),
Map.of(PROPERTY_NAME,5.0f)
);

List<Map<String, Object>> outputEvents = List.of(
Map.of(PROPERTY_NAME,10.0f,WelfordEventFields.VAL_LOW.label,0.0, WelfordEventFields.VAL_HIGH.label,0.0,
WelfordEventFields.DECISION_LOW.label,false, WelfordEventFields.DECISION_HIGH.label,false),
Map.of(PROPERTY_NAME,20.0f,WelfordEventFields.VAL_LOW.label,0.0, WelfordEventFields.VAL_HIGH.label,0.20710678118654746,
WelfordEventFields.DECISION_LOW.label,false,WelfordEventFields.DECISION_HIGH.label,false),
Map.of(PROPERTY_NAME,5.0f,WelfordEventFields.VAL_LOW.label,-0.37287156094396945, WelfordEventFields.VAL_HIGH.label,0.0,
WelfordEventFields.DECISION_LOW.label,false, WelfordEventFields.DECISION_HIGH.label,false)
);

ProcessingElementTestExecutor testExecutor = new ProcessingElementTestExecutor(processor, configuration);

testExecutor.run(inputEvents,outputEvents);
}

@Test
public void testWelfordChangeDetectedLow() {

TestConfiguration configuration = TestConfiguration.builder()
.configWithDefaultPrefix(WelfordChangeDetection.NUMBER_MAPPING, PROPERTY_NAME)
.config(WelfordChangeDetection.PARAM_K,0.5)
.config(WelfordChangeDetection.PARAM_H,1.0)
.build();

List<Map<String, Object>> inputEvents = List.of(
Map.of(PROPERTY_NAME,10.0f),
Map.of(PROPERTY_NAME,5.0f),
Map.of(PROPERTY_NAME, 20.0f)
);

List<Map<String, Object>> outputEvents = List.of(
Map.of(PROPERTY_NAME,10.0f,WelfordEventFields.VAL_LOW.label,0.0, WelfordEventFields.VAL_HIGH.label,0.0,
WelfordEventFields.DECISION_LOW.label,false, WelfordEventFields.DECISION_HIGH.label,false),
Map.of(PROPERTY_NAME,5.0f,WelfordEventFields.VAL_LOW.label,-0.20710678118654746, WelfordEventFields.VAL_HIGH.label,0.0,
WelfordEventFields.DECISION_LOW.label,false, WelfordEventFields.DECISION_HIGH.label,false),
Map.of(PROPERTY_NAME,20.0f,WelfordEventFields.VAL_LOW.label,0.0, WelfordEventFields.VAL_HIGH.label,0.5910894511799618,
WelfordEventFields.DECISION_LOW.label,false, WelfordEventFields.DECISION_HIGH.label,false)
);

ProcessingElementTestExecutor testExecutor = new ProcessingElementTestExecutor(processor, configuration);

testExecutor.run(inputEvents,outputEvents);
}



}
Loading