blob: 42a943b339582f46d587206acab5baa12452fd8c [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.saga.omega.transaction.spring;
import static akka.actor.ActorRef.noSender;
import static com.seanyinx.github.unit.scaffolding.AssertUtils.expectFailing;
import static com.seanyinx.github.unit.scaffolding.Randomness.uniquify;
import static java.util.Collections.singletonList;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static org.apache.servicecomb.saga.omega.transaction.spring.TransactionalUserService.ILLEGAL_USER;
import static org.awaitility.Awaitility.await;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.nullValue;
import static org.hamcrest.Matchers.allOf;
import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.fail;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import org.apache.servicecomb.saga.omega.context.CompensationContext;
import org.apache.servicecomb.saga.omega.context.IdGenerator;
import org.apache.servicecomb.saga.omega.context.OmegaContext;
import org.apache.servicecomb.saga.omega.transaction.AlphaResponse;
import org.apache.servicecomb.saga.omega.transaction.MessageHandler;
import org.apache.servicecomb.saga.omega.transaction.MessageSender;
import org.apache.servicecomb.saga.omega.transaction.TxAbortedEvent;
import org.apache.servicecomb.saga.omega.transaction.TxCompensatedEvent;
import org.apache.servicecomb.saga.omega.transaction.TxEndedEvent;
import org.apache.servicecomb.saga.omega.transaction.TxStartedEvent;
import org.apache.servicecomb.saga.omega.transaction.spring.TransactionInterceptionTest.MessageConfig;
import org.apache.servicecomb.saga.omega.transaction.spring.annotations.OmegaContextAware;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.test.context.junit4.SpringRunner;
import io.reactivex.Flowable;
import io.reactivex.schedulers.Schedulers;
import akka.actor.AbstractLoggingActor;
import akka.actor.ActorRef;
import akka.actor.ActorSystem;
import akka.actor.Props;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = {TransactionTestMain.class, MessageConfig.class})
@AutoConfigureMockMvc
public class TransactionInterceptionTest {
@SuppressWarnings("unchecked")
private static final IdGenerator<String> idGenerator = Mockito.mock(IdGenerator.class);
private static final String globalTxId = UUID.randomUUID().toString();
private final String newLocalTxId = UUID.randomUUID().toString();
private final String anotherLocalTxId = UUID.randomUUID().toString();
private final String username = uniquify("username");
private final String email = uniquify("email");
private final User user = new User(username, email);
private final User illegalUser = new User(ILLEGAL_USER, email);
private final String usernameJack = uniquify("Jack");
private final User jack = new User(usernameJack, uniquify("jack@gmail.com"));
@OmegaContextAware
private final ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor();
@Autowired
private List<String> messages;
@Autowired
private TransactionalUserService userService;
@Autowired
private OmegaContext omegaContext;
@Autowired
private UserRepository userRepository;
@Autowired
private MessageHandler messageHandler;
private String compensationMethod;
private String compensationMethod2;
private String retryMethod;
@Before
public void setUp() throws Exception {
when(idGenerator.nextId()).thenReturn(newLocalTxId, anotherLocalTxId);
omegaContext.setGlobalTxId(globalTxId);
omegaContext.setLocalTxId(globalTxId);
retryMethod = TransactionalUserService.class.getDeclaredMethod("add", User.class, int.class).toString();
compensationMethod = TransactionalUserService.class.getDeclaredMethod("delete", User.class).toString();
compensationMethod2 = TransactionalUserService.class.getDeclaredMethod("delete", User.class, int.class).toString();
}
@After
public void tearDown() throws Exception {
messages.clear();
userRepository.deleteAll();
omegaContext.clear();
userService.resetCount();
}
@AfterClass
public static void afterClass() throws Exception {
}
@Test
public void sendsUserToRemote_AroundTransaction() throws Exception {
User user = userService.add(this.user);
assertArrayEquals(
new String[] {
new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod, 0, "", 0,
user).toString(),
new TxEndedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod).toString()},
toArray(messages)
);
User actual = userRepository.findByUsername(user.username());
assertThat(actual, is(user));
}
@Test
public void sendsAbortEvent_OnSubTransactionFailure() throws Exception {
Throwable throwable = null;
try {
userService.add(illegalUser);
expectFailing(IllegalArgumentException.class);
} catch (IllegalArgumentException ignored) {
throwable = ignored;
}
assertArrayEquals(
new String[] {
new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod, 0, "", 0,
illegalUser).toString(),
new TxAbortedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod, throwable).toString()},
toArray(messages)
);
}
@Test
public void compensateOnTransactionException() throws Exception {
User user = userService.add(this.user);
// another sub transaction to the same service within the same global transaction
String localTxId = omegaContext.newLocalTxId();
User anotherUser = userService.add(jack);
messageHandler.onReceive(globalTxId, newLocalTxId, globalTxId, compensationMethod, user);
messageHandler.onReceive(globalTxId, anotherLocalTxId, localTxId, compensationMethod, anotherUser);
assertThat(userRepository.findByUsername(user.username()), is(nullValue()));
assertThat(userRepository.findByUsername(anotherUser.username()), is(nullValue()));
assertArrayEquals(
new String[] {
new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod, 0, "", 0, user).toString(),
new TxEndedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod).toString(),
new TxStartedEvent(globalTxId, anotherLocalTxId, localTxId, compensationMethod, 0, "", 0,
anotherUser).toString(),
new TxEndedEvent(globalTxId, anotherLocalTxId, localTxId, compensationMethod).toString(),
new TxCompensatedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod).toString(),
new TxCompensatedEvent(globalTxId, anotherLocalTxId, localTxId, compensationMethod).toString()
},
toArray(messages)
);
}
@Test
public void retryTillSuccess() {
try {
userService.add(user, 1);
} catch (Exception e) {
fail("unexpected exception throw: " + e);
}
assertThat(messages.size(), is(4));
assertThat(messages.get(0),
is(new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod2, 0, retryMethod, 2, user, 1)
.toString()));
String abortedEvent = messages.get(1);
assertThat(abortedEvent, allOf(containsString("TxAbortedEvent"), containsString("Retry harder")));
assertThat(messages.get(2),
is(new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod2, 0, retryMethod, 1, user, 1)
.toString()));
assertThat(messages.get(3),
is(new TxEndedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod2).toString()));
assertThat(userRepository.count(), is(1L));
userRepository.findAll().forEach(user -> assertThat(user, is(this.user)));
}
@Test
public void retryReachesMaximumThenThrowsException() {
try {
userService.add(user, 3);
expectFailing(IllegalStateException.class);
} catch (IllegalStateException e) {
assertThat(e.getMessage(), is("Retry harder"));
}
assertThat(messages.size(), is(4));
assertThat(messages.get(0),
is(new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod2, 0, retryMethod, 2, user, 3)
.toString()));
String abortedEvent1 = messages.get(1);
assertThat(abortedEvent1, allOf(containsString("TxAbortedEvent"), containsString("Retry harder")));
assertThat(messages.get(2),
is(new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod2, 0, retryMethod, 1, user, 3)
.toString()));
String abortedEvent2 = messages.get(3);
assertThat(abortedEvent2, allOf(containsString("TxAbortedEvent"), containsString("Retry harder")));
assertThat(userRepository.count(), is(0L));
}
@Test
public void passesOmegaContextThroughDifferentThreads() throws Exception {
new Thread(() -> userService.add(user)).start();
waitTillSavedUser(username);
String localTxId = omegaContext.newLocalTxId();
new Thread(() -> userService.add(jack)).start();
waitTillSavedUser(usernameJack);
assertArrayEquals(
new String[] {
new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod, 0, "", 0, user).toString(),
new TxEndedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod).toString(),
new TxStartedEvent(globalTxId, anotherLocalTxId, localTxId, compensationMethod, 0, "", 0, jack).toString(),
new TxEndedEvent(globalTxId, anotherLocalTxId, localTxId, compensationMethod).toString()},
toArray(messages)
);
}
@Test
public void passesOmegaContextInThreadPool() throws Exception {
executor.schedule(() -> userService.add(user), 0, MILLISECONDS);
waitTillSavedUser(username);
String localTxId = omegaContext.newLocalTxId();
executor.invokeAll(singletonList(() -> userService.add(jack)));
waitTillSavedUser(usernameJack);
assertArrayEquals(
new String[] {
new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod, 0, "", 0, user).toString(),
new TxEndedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod).toString(),
new TxStartedEvent(globalTxId, anotherLocalTxId, localTxId, compensationMethod, 0, "", 0, jack).toString(),
new TxEndedEvent(globalTxId, anotherLocalTxId, localTxId, compensationMethod).toString()},
toArray(messages)
);
}
// TODO: 2018/1/4 reactive is not supported yet, omega context won't be updated on shared threads
@Test
public void passesOmegaContextThroughReactiveX() throws Exception {
Flowable.just(user)
.parallel()
.runOn(Schedulers.io())
.doOnNext(userService::add)
.sequential()
.subscribe();
waitTillSavedUser(username);
assertArrayEquals(
new String[] {
new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod, 0, "", 0, user).toString(),
new TxEndedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod).toString()},
toArray(messages)
);
}
// TODO: 2018/1/4 actor system is not supported yet
@Test
public void passesOmegaContextAmongActors() throws Exception {
ActorSystem actorSystem = ActorSystem.create();
ActorRef actorRef = actorSystem.actorOf(UserServiceActor.props(userService));
actorRef.tell(user, noSender());
waitTillSavedUser(username);
assertArrayEquals(
new String[] {
new TxStartedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod, 0, "", 0, user).toString(),
new TxEndedEvent(globalTxId, newLocalTxId, globalTxId, compensationMethod).toString()},
toArray(messages)
);
actorSystem.terminate();
}
@Test
public void assertCompensationMethodTransactionAware() throws NoSuchMethodException {
userService.add(user);
compensationMethod = TransactionalUserService.class.getDeclaredMethod("deleteWithTransactional", User.class).toString();
messageHandler.onReceive(globalTxId, newLocalTxId, globalTxId, compensationMethod, user);
User actualUser = userRepository.findByUsername(user.username());
assertNotNull(actualUser);
assertThat(actualUser.username(), is(username));
assertThat(actualUser.email(), is(email));
}
private void waitTillSavedUser(String username) {
await().atMost(1000, MILLISECONDS).until(() -> userRepository.findByUsername(username) != null);
}
private static class UserServiceActor extends AbstractLoggingActor {
private final TransactionalUserService userService;
private UserServiceActor(TransactionalUserService userService) {
this.userService = userService;
}
static Props props(TransactionalUserService userService) {
return Props.create(UserServiceActor.class, () -> new UserServiceActor(userService));
}
@Override
public Receive createReceive() {
return receiveBuilder()
.match(User.class, userService::add)
.build();
}
}
private String[] toArray(List<String> messages) {
return messages.toArray(new String[messages.size()]);
}
@Configuration
static class MessageConfig {
private final List<String> messages = new ArrayList<>();
@Bean
CompensationContext recoveryContext(OmegaContext omegaContext) {
return new CompensationContext(omegaContext);
}
@Bean
OmegaContext omegaContext() {
return new OmegaContext(idGenerator);
}
@Bean
List<String> messages() {
return messages;
}
@Bean
MessageSender sender() {
return (event) -> {
messages.add(event.toString());
return new AlphaResponse(false);
};
}
}
}