blob: 959e47576d1d33534b4c7f6f0a415b0253a596b1 [file] [log] [blame]
/*
* Copyright 2017 HugeGraph Authors
*
* 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 com.baidu.hugegraph.computer.core.sender;
import org.junit.Before;
import org.junit.Test;
import com.baidu.hugegraph.computer.core.config.ComputerOptions;
import com.baidu.hugegraph.computer.core.config.Config;
import com.baidu.hugegraph.computer.core.worker.MockComputation2;
import com.baidu.hugegraph.computer.suite.unit.UnitTestBase;
import com.baidu.hugegraph.config.RpcOptions;
import com.baidu.hugegraph.testutil.Assert;
import com.baidu.hugegraph.testutil.Whitebox;
import com.google.common.collect.ImmutableSet;
public class QueuedMessageSenderTest {
private Config config;
@Before
public void setup() {
this.config = UnitTestBase.updateWithRequiredOptions(
RpcOptions.RPC_REMOTE_URL, "127.0.0.1:8090",
ComputerOptions.JOB_ID, "local_002",
ComputerOptions.JOB_WORKERS_COUNT, "2",
ComputerOptions.JOB_PARTITIONS_COUNT, "2",
ComputerOptions.TRANSPORT_SERVER_PORT, "8086",
ComputerOptions.BSP_REGISTER_TIMEOUT, "30000",
ComputerOptions.BSP_LOG_INTERVAL, "10000",
ComputerOptions.BSP_MAX_SUPER_STEP, "2",
ComputerOptions.WORKER_COMPUTATION_CLASS,
MockComputation2.class.getName()
);
}
@Test
public void testInitAndClose() {
QueuedMessageSender sender = new QueuedMessageSender(this.config);
sender.addWorkerClient(1, new MockTransportClient());
sender.addWorkerClient(2, new MockTransportClient());
sender.init();
Thread sendExecutor = Whitebox.getInternalState(sender, "sendExecutor");
Assert.assertTrue(ImmutableSet.of(Thread.State.NEW,
Thread.State.RUNNABLE,
Thread.State.WAITING)
.contains(sendExecutor.getState()));
sender.close();
Assert.assertTrue(ImmutableSet.of(Thread.State.TERMINATED)
.contains(sendExecutor.getState()));
}
}