catarse_moip 1.0.4 → 1.0.5
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c66d57d3bfcaab6661b6135c0889b8f70ce0a07d
|
4
|
+
data.tar.gz: 5525def340c92871f2c30b92e389a0b9947b6c95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9497ecb61d0c0190caf4b8ba465723a9519e93a4be6c3e14e5778304d0ca66e176f58e8391e4ed925604cb7c2327a42a234e6d7a3a60429ce4add6501d8737d
|
7
|
+
data.tar.gz: faf0ad6b55baa625cd7c625a3ab79e387a92c62937272b744bc6d132cd07cd9e5980d8a91625ca861b15b7efd292c1e86a2f278e27884efa86bb765c120f6874
|
data/Gemfile.lock
CHANGED
@@ -110,7 +110,7 @@ module CatarseMoip
|
|
110
110
|
PaymentEngines.create_payment_notification backer_id: backer.id, extra_data: JSON.parse(params.to_json.force_encoding('iso-8859-1').encode('utf-8'))
|
111
111
|
|
112
112
|
backer.with_lock do
|
113
|
-
if backer.payment_id.gsub(".", "").to_i
|
113
|
+
if backer.payment_id.gsub(".", "").to_i <= params[:cod_moip].to_i
|
114
114
|
backer.update_attributes payment_id: params[:cod_moip]
|
115
115
|
|
116
116
|
case params[:status_pagamento].to_i
|
data/lib/catarse_moip/version.rb
CHANGED
@@ -85,6 +85,21 @@ describe CatarseMoip::MoipController do
|
|
85
85
|
it("should assign backer"){ assigns(:backer).should == backer }
|
86
86
|
end
|
87
87
|
|
88
|
+
context "when we receive a notification with the same payment id but with another status" do
|
89
|
+
before do
|
90
|
+
controller.stub(:params).and_return({:cod_moip => 123, :id_transacao =>backer.key, :controller => "catarse_moip/moip", :action => "create_notification", :status_pagamento => 1})
|
91
|
+
backer.stub(:payment_id).and_return('123')
|
92
|
+
|
93
|
+
controller.should_receive(:process_moip_message).and_call_original
|
94
|
+
backer.should_receive(:update_attributes).with(payment_id: 123)
|
95
|
+
post :create_notification, {:id_transacao => backer.key, :use_route => 'catarse_moip'}
|
96
|
+
end
|
97
|
+
|
98
|
+
its(:body){ should == ' ' }
|
99
|
+
its(:status){ should == 200 }
|
100
|
+
it("should assign backer"){ assigns(:backer).should == backer }
|
101
|
+
end
|
102
|
+
|
88
103
|
context "when receive a unordered notification for backer" do
|
89
104
|
before do
|
90
105
|
controller.stub(:params).and_return({:cod_moip => 122, :id_transacao =>backer.key, :controller => "catarse_moip/moip", :action => "create_notification", :status_pagamento => 5})
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: catarse_moip
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Antônio Roberto Silva
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-09-
|
13
|
+
date: 2013-09-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|