blob: 64a4e0cd12e34b9ebbb07039308c663c0b45718f [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.pack.alpha.spec.saga.db;
import static com.seanyinx.github.unit.scaffolding.Randomness.uniquify;
import static java.util.Collections.singletonList;
import static org.apache.servicecomb.pack.common.EventType.TxStartedEvent;
import static org.hamcrest.collection.IsCollectionWithSize.hasSize;
import static org.hamcrest.core.Is.is;
import static org.mockito.Mockito.when;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
import java.util.UUID;
import org.apache.servicecomb.pack.alpha.core.TxEvent;
import org.apache.servicecomb.pack.alpha.spec.saga.db.test.AlphaEventController;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
@RunWith(SpringRunner.class)
@ContextConfiguration(classes = {WebConfiguration.class})
@WebMvcTest(value = {AlphaEventController.class}, properties = {
"spring.profiles.active=test"
})
public class AlphaEventControllerTest {
private final TxEvent someEvent = someEvent();
@Autowired
private MockMvc mockMvc;
@MockBean
private TxEventEnvelopeRepository eventRepository;
@Before
public void setUp() throws Exception {
when(eventRepository.findAll()).thenReturn(singletonList(someEvent));
}
@Test
public void retrievesEventsFromRepo() throws Exception {
mockMvc.perform(get("/saga/events"))
.andExpect(status().isOk())
.andExpect(jsonPath("$", hasSize(1)))
.andExpect(jsonPath("$.[0].globalTxId", is(someEvent.globalTxId())))
.andExpect(jsonPath("$.[0].localTxId", is(someEvent.localTxId())));
}
private TxEvent someEvent() {
return new TxEvent(
uniquify("serviceName"),
uniquify("instanceId"),
uniquify("globalTxId"),
uniquify("localTxId"),
UUID.randomUUID().toString(),
TxStartedEvent.name(),
this.getClass().getCanonicalName(),
uniquify("blah").getBytes());
}
}