-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path02_lost_update_spec.rb
More file actions
83 lines (67 loc) · 2.4 KB
/
02_lost_update_spec.rb
File metadata and controls
83 lines (67 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
RSpec.describe 'Lost update' do
around do |example|
execute <<~SQL
CREATE TABLE events (
id text NOT NULL,
available_seats integer NOT NULL,
PRIMARY KEY (id)
);
SQL
execute <<~SQL
CREATE TABLE bookings (
id uuid DEFAULT gen_random_uuid() NOT NULL,
customer_name text NOT NULL,
seat_count integer NOT NULL,
event_id text NOT NULL,
FOREIGN KEY (event_id) REFERENCES events (id),
PRIMARY KEY (id)
);
SQL
example.run
ensure
execute 'DROP TABLE IF EXISTS bookings;'
execute 'DROP TABLE IF EXISTS events;'
end
before do
Event.create!(id: 'event_a', available_seats: 2)
end
let(:alice) do
define('alice') do
transaction do
available_seats = log Event.where(id: 'event_a').pluck(:available_seats).first
yield_control
Booking.create!(customer_name: 'Alice', seat_count: 1, event_id: 'event_a')
Event.where(id: 'event_a').update_all(available_seats: available_seats - 1)
end
yield_control
end
end
let(:bob) do
define('bob') do
transaction do
available_seats = log Event.where(id: 'event_a').pluck(:available_seats).first
yield_control
Booking.create!(customer_name: 'Bob', seat_count: 1, event_id: 'event_a')
Event.where(id: 'event_a').update_all(available_seats: available_seats - 1)
end
yield_control
end
end
specify <<-DESC.lstrip do
Bob encounters a lost update anomaly:
both he and Alice start transactions and see the same amount of seats available;
Bob commits first, at which point available_seats is decremented by 1;
Alice then commits, setting the available_seats to 1 as well since her value is based on stale data;
Bob's update is lost since it is overwritten by Alice's;
2 seats end up being booked, while event's available seat capacity becomes 1, even though it should be 0
DESC
initially_available_seats = log Event.where(id: 'event_a').pluck(:available_seats).first
expect(initially_available_seats).to eq(2)
start_in_order_and_conduct(bob, alice)
expect(outcomes(bob, alice)).to match_array(%i[success success])
available_seats = log Event.where(id: 'event_a').pluck(:available_seats).first
expect(available_seats).to eq(1)
taken_seats = log Booking.sum(:seat_count)
expect(taken_seats).to eq(2)
end
end