traffic_mansion 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rvmrc +1 -0
- data/lib/traffic_mansion/queue.rb +16 -0
- data/lib/traffic_mansion/tracker.rb +4 -0
- data/lib/traffic_mansion/version.rb +1 -1
- data/spec/queue_spec.rb +65 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff1308d4d6ced5174e0b95dc29240b31bd6e343d
|
4
|
+
data.tar.gz: aab8cf042cad93d8b732505c9a6777142c635043
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e8f552ccddabf0c9c4d402b68ebe6ff3d3efe9ec1e2f9ceca2c8c709fc50ae7c82e62ce6ff95764194c5a5f1c1d0062332673e35fa08c27af16710e7f780f8c
|
7
|
+
data.tar.gz: 8a3d5ce6ecbdc87b1343ae250c98a3b037661ef4c23e842684dd60c73c964c7800226dff93da4c40ed8b6b1ee5d839d3b3068e1be0b16dc58ee016dfe8b58009
|
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm use ruby-2.0.0
|
@@ -63,6 +63,22 @@ module TrafficMansion
|
|
63
63
|
TrafficMansion::Queue::add "rebill", nil, event_data
|
64
64
|
end
|
65
65
|
|
66
|
+
def self.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
67
|
+
event_data = {
|
68
|
+
"user_id" => user_id,
|
69
|
+
"timestamp" => Time.now.to_i,
|
70
|
+
"transaction" => payment_id,
|
71
|
+
"amount" => amount,
|
72
|
+
"product_code" => product_code,
|
73
|
+
"remote_addr" => remote_ip,
|
74
|
+
"http_referer" => referer,
|
75
|
+
"is_rebill" => transaction_type.to_s == "rebill" ? 1 : 0,
|
76
|
+
"refund_transid" => payment_id,
|
77
|
+
"penalty" => 0, # normally it's not used anymore, but, who knows?...
|
78
|
+
}
|
79
|
+
TrafficMansion::Queue::add "refund", nil, event_data
|
80
|
+
end
|
81
|
+
|
66
82
|
def self.add type, parent_event_id = nil, data = {}
|
67
83
|
user_id = data["user_id"]
|
68
84
|
event = TrafficMansion::Queue.create :type => type, :parent_event_id => parent_event_id, :user_id => user_id, :data => data
|
data/spec/queue_spec.rb
CHANGED
@@ -163,6 +163,71 @@ describe TrafficMansion::Queue do
|
|
163
163
|
end
|
164
164
|
end
|
165
165
|
|
166
|
+
describe "self.add_refund" do
|
167
|
+
let(:user_id) { "user_id" }
|
168
|
+
let(:payment_id) { "payment_id" }
|
169
|
+
let(:amount) { "amount" }
|
170
|
+
let(:product_code) { "product_code" }
|
171
|
+
let(:transaction_type) { :rebill }
|
172
|
+
let(:remote_ip) { "remote_ip" }
|
173
|
+
let(:referer) { "referer" }
|
174
|
+
|
175
|
+
it "persists the rebill" do
|
176
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
177
|
+
TrafficMansion::Queue.last.type.should eql "refund"
|
178
|
+
end
|
179
|
+
|
180
|
+
it "persists the user id" do
|
181
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
182
|
+
TrafficMansion::Queue.last.user_id.should eql user_id
|
183
|
+
end
|
184
|
+
|
185
|
+
it "persists the user id" do
|
186
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
187
|
+
TrafficMansion::Queue.last.data["user_id"].should eql user_id
|
188
|
+
end
|
189
|
+
|
190
|
+
it "persists the transaction id" do
|
191
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
192
|
+
TrafficMansion::Queue.last.data["transaction"].should eql payment_id
|
193
|
+
end
|
194
|
+
|
195
|
+
it "persists the amount" do
|
196
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
197
|
+
TrafficMansion::Queue.last.data["amount"].should eql amount
|
198
|
+
end
|
199
|
+
|
200
|
+
it "persists the product code" do
|
201
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
202
|
+
TrafficMansion::Queue.last.data["product_code"].should eql product_code
|
203
|
+
end
|
204
|
+
|
205
|
+
it "persists the transaction type" do
|
206
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
207
|
+
TrafficMansion::Queue.last.data["is_rebill"].should eql 1
|
208
|
+
end
|
209
|
+
|
210
|
+
it "persists the refund transaction id" do
|
211
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
212
|
+
TrafficMansion::Queue.last.data["refund_transid"].should eql payment_id
|
213
|
+
end
|
214
|
+
|
215
|
+
it "persists the penalty" do
|
216
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
217
|
+
TrafficMansion::Queue.last.data["penalty"].should eql 0
|
218
|
+
end
|
219
|
+
|
220
|
+
it "persists the remote ip" do
|
221
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
222
|
+
TrafficMansion::Queue.last.data["remote_addr"].should eql remote_ip
|
223
|
+
end
|
224
|
+
|
225
|
+
it "persists the referer" do
|
226
|
+
TrafficMansion::Queue.add_refund user_id, payment_id, amount, product_code, transaction_type, remote_ip, referer
|
227
|
+
TrafficMansion::Queue.last.data["http_referer"].should eql referer
|
228
|
+
end
|
229
|
+
end
|
230
|
+
|
166
231
|
describe "self.find_parent_by_user" do
|
167
232
|
before :each do
|
168
233
|
TrafficMansion::Queue.add_signup "parent_event_id", "user_id", "remote_ip", "referer"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: traffic_mansion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AgileWings
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-06-
|
11
|
+
date: 2013-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -130,6 +130,7 @@ extensions: []
|
|
130
130
|
extra_rdoc_files: []
|
131
131
|
files:
|
132
132
|
- .gitignore
|
133
|
+
- .rvmrc
|
133
134
|
- Gemfile
|
134
135
|
- LICENSE.txt
|
135
136
|
- README.md
|