blob: a19d29b79fdbd78053697bcb29f1b553b28bdc26 [file] [log] [blame]
/*
* 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.iotdb.confignode.procedure.impl;
import org.apache.iotdb.commons.exception.IllegalPathException;
import org.apache.iotdb.commons.path.PartialPath;
import org.apache.iotdb.commons.trigger.TriggerInformation;
import org.apache.iotdb.confignode.procedure.impl.trigger.CreateTriggerProcedure;
import org.apache.iotdb.confignode.procedure.store.ProcedureFactory;
import org.apache.iotdb.confignode.rpc.thrift.TTriggerState;
import org.apache.iotdb.trigger.api.enums.FailureStrategy;
import org.apache.iotdb.trigger.api.enums.TriggerEvent;
import org.apache.iotdb.tsfile.utils.Binary;
import org.apache.iotdb.tsfile.utils.PublicBAOS;
import org.junit.Test;
import java.io.DataOutputStream;
import java.nio.ByteBuffer;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
public class CreateTriggerProcedureTest {
@Test
public void serializeDeserializeTest() throws IllegalPathException {
PublicBAOS byteArrayOutputStream = new PublicBAOS();
DataOutputStream outputStream = new DataOutputStream(byteArrayOutputStream);
TriggerInformation triggerInformation =
new TriggerInformation(
new PartialPath("root.test.**"),
"test",
"test.class",
true,
"test.jar",
null,
TriggerEvent.AFTER_INSERT,
TTriggerState.INACTIVE,
false,
null,
FailureStrategy.OPTIMISTIC,
"testMD5test");
CreateTriggerProcedure p1 =
new CreateTriggerProcedure(triggerInformation, new Binary(new byte[] {1, 2, 3}), false);
try {
p1.serialize(outputStream);
ByteBuffer buffer =
ByteBuffer.wrap(byteArrayOutputStream.getBuf(), 0, byteArrayOutputStream.size());
CreateTriggerProcedure p2 =
(CreateTriggerProcedure) ProcedureFactory.getInstance().create(buffer);
assertEquals(p1, p2);
assertEquals(p1.getJarFile(), p2.getJarFile());
} catch (Exception e) {
fail();
}
}
@Test
public void serializeDeserializeWithoutJarFileTest() throws IllegalPathException {
PublicBAOS byteArrayOutputStream = new PublicBAOS();
DataOutputStream outputStream = new DataOutputStream(byteArrayOutputStream);
TriggerInformation triggerInformation =
new TriggerInformation(
new PartialPath("root.test.**"),
"test",
"test.class",
true,
"test.jar",
null,
TriggerEvent.AFTER_INSERT,
TTriggerState.INACTIVE,
false,
null,
FailureStrategy.OPTIMISTIC,
"testMD5test");
CreateTriggerProcedure p1 = new CreateTriggerProcedure(triggerInformation, null, false);
try {
p1.serialize(outputStream);
ByteBuffer buffer =
ByteBuffer.wrap(byteArrayOutputStream.getBuf(), 0, byteArrayOutputStream.size());
CreateTriggerProcedure p2 =
(CreateTriggerProcedure) ProcedureFactory.getInstance().create(buffer);
assertEquals(p1, p2);
assertEquals(p1.getJarFile(), p2.getJarFile());
} catch (Exception e) {
fail();
}
}
}