blob: d078cd186480814f3fa2e5b074a7ed089f371e17 [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.servicecomb.huaweicloud.dtm;
import java.util.HashMap;
import java.util.Map;
import org.apache.servicecomb.core.Invocation;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.jupiter.api.BeforeAll;
import com.huawei.middleware.dtm.client.context.DTMContext;
import mockit.Expectations;
import mockit.Mocked;
public class TestConsumerHandler {
@BeforeClass
public static void init() {
DTMContext.TRACE_ID = "";
DTMContext.GLOBAL_TX_ID = "";
}
@Test
public void testHandler(@Mocked Invocation invocation) throws Exception {
DtmConsumerHandler consumerHandler = new DtmConsumerHandler();
consumerHandler.init(null, null);
Map<String, String> context = new HashMap<>();
new Expectations() {{
invocation.getContext();
result = context;
}};
String expectTxId = "dtm-tx-id";
String expectTraceId = "dtm-trace-id";
Assert.assertEquals(0, context.size());
DTMContext.GLOBAL_TX_ID = expectTxId;
DTMContext.TRACE_ID = expectTraceId;
consumerHandler.handle(invocation, null);
Assert.assertEquals(1, context.size());
Assert.assertEquals(expectTxId, context.get(DTMContext.GLOBAL_TX_ID_KEY));
}
}