Skip to content

Commit

Permalink
Merge 521425f into be37cfe
Browse files Browse the repository at this point in the history
  • Loading branch information
lijasonvip committed Apr 16, 2018
2 parents be37cfe + 521425f commit beb150f
Show file tree
Hide file tree
Showing 6 changed files with 164 additions and 0 deletions.
@@ -0,0 +1,35 @@
# 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.

##############################################################
# rules to timeout the car after invoking the services
#
###############################################################
RULE set the saga compensable timeout to 5s
INTERFACE org.apache.servicecomb.saga.omega.transaction.annotations.Compensable
METHOD timeout
AT EXIT
IF TRUE
DO RETURN 5
ENDRULE

RULE sleep when postCarBooking until timeout happens
CLASS org.apache.servicecomb.saga.demo.pack.car.CarBookingService
METHOD postCarBooking
AT ENTRY
IF TRUE
DO debug("delay 10s until the car booking timeout"),
Thread.sleep(10000)
ENDRULE
@@ -0,0 +1,35 @@
# 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.

##############################################################
# rules to timeout the car after invoking the services
#
###############################################################
RULE set the saga compensable timeout to 2s
INTERFACE org.apache.servicecomb.saga.omega.transaction.annotations.Compensable
METHOD timeout
AT EXIT
IF TRUE
DO RETURN 2
ENDRULE

RULE sleep when postHotelBooking until timeout happens
CLASS org.apache.servicecomb.saga.demo.pack.hotel.HotelBookingService
METHOD postHotelBooking
AT ENTRY
IF TRUE
DO debug("delay 10s until the car booking timeout"),
Thread.sleep(4000)
ENDRULE
@@ -0,0 +1,39 @@
# 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.

Feature: Alpha records transaction events

Scenario: Car transaction timeout and will be compensated
Given Car Service is up and running
And Hotel Service is up and running
And Booking Service is up and running
And Alpha is up and running

Given Install the byteman script car_timeout.btm to Car Service

When User Jason requests to book 1 cars and 1 rooms

Then Alpha records the following events
| serviceName | type |
| pack-booking | SagaStartedEvent |
| pack-car | TxStartedEvent |
| pack-car | TxAbortedEvent |
| pack-car | TxCompensatedEvent |
| pack-car | SagaEndedEvent |
| pack-car | TxEndedEvent |

Then Car Service contains the following booking orders
| name | amount | confirmed | cancelled |
| Jason | 1 | true | false |
@@ -0,0 +1,47 @@
# 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.

Feature: Alpha records transaction events

Scenario: Hotel transaction timeout and will be compensated
Given Car Service is up and running
And Hotel Service is up and running
And Booking Service is up and running
And Alpha is up and running

Given Install the byteman script hotel_timeout.btm to Hotel Service

When User Jason requests to book 1 cars and 1 rooms

Then Alpha records the following events
| serviceName | type |
| pack-booking | SagaStartedEvent |
| pack-car | TxStartedEvent |
| pack-car | TxEndedEvent |
| pack-hotel | TxStartedEvent |
| pack-hotel | TxAbortedEvent |
| pack-car | TxCompensatedEvent |
| pack-hotel | TxCompensatedEvent |
| pack-hotel | SagaEndedEvent |
| pack-hotel | TxEndedEvent |
| pack-booking | SagaEndedEvent |

Then Car Service contains the following booking orders
| name | amount | confirmed | cancelled |
| Jason | 1 | false | true |

And Hotel Service contains the following booking orders
| name | amount | confirmed | cancelled |
| Jason | 1 | true | false |
Expand Up @@ -30,6 +30,7 @@ class CarBookingService {

@Compensable(compensationMethod = "cancel")
void order(CarBooking booking) {
postCarBooking();
booking.confirm();
bookings.put(booking.getId(), booking);
}
Expand All @@ -48,4 +49,7 @@ Collection<CarBooking> getAllBookings() {
void clearAllBookings() {
bookings.clear();
}

//used by byteman to inject fault
private void postCarBooking(){}
}
Expand Up @@ -30,6 +30,7 @@ class HotelBookingService {

@Compensable(compensationMethod = "cancel")
void order(HotelBooking booking) {
postHotelBooking();
if (booking.getAmount() > 2) {
throw new IllegalArgumentException("can not order the rooms large than two");
}
Expand All @@ -51,4 +52,7 @@ Collection<HotelBooking> getAllBookings() {
void clearAllBookings() {
bookings.clear();
}

//used by byteman to inject fault
private void postHotelBooking(){}
}

0 comments on commit beb150f

Please sign in to comment.