active_merchant-paypal-bogus-gateway 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ee77f29773d4dbf5f757b7b8252651463f12675f
4
+ data.tar.gz: 00d040b287f0c007ecdcc0fe93f8801feb0b34e7
5
+ SHA512:
6
+ metadata.gz: b203afdbd15d088748e832923c265ff005242d8eb0c048a5e80c6b634538d12b9e4dd3ba44bb8f6bf50b12372b9b5d6b3d18152486a18ef47bbb69131768f8dc
7
+ data.tar.gz: 18154a5acdc3f5bb0964871d5bef234203dbc8e2b8800a616b9eba7e6549ad2262caa4295ba10ce0a8da2833bcd71ee67668d386bcd795fd1e7fe2c7eb68a9b2
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1
4
+ before_install:
5
+ - gem install bundler
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in active_merchant-paypal-bogus-gateway.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Philipp Fehre
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,45 @@
1
+ # ActiveMerchant PaypalBogusGateway
2
+
3
+ [![Build Status](https://travis-ci.org/sideshowcoder/active_merchant-paypal-bogus-gateway.svg?branch=master)](https://travis-ci.org/sideshowcoder/active_merchant-paypal-bogus-gateway)
4
+
5
+ Gateway used for testing Paypal integration via ActiveMerchant,
6
+ [extracted from old Pull Request](https://github.com/activemerchant/active_merchant/pull/424)
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'active_merchant-paypal-bogus-gateway'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install active_merchant-paypal-bogus-gateway
23
+
24
+ ## Usage
25
+
26
+ Load the extension in you tests which need it
27
+
28
+ ```ruby
29
+ require "active_merchant-paypal-bogus-gateway/ext/paypal_bogus_gateway"
30
+
31
+ ActiveMerchant::Billing::PaypalBogusGateway.new
32
+ ```
33
+
34
+ For more details checkout
35
+ [this post](https://web.archive.org/web/20150211210445/http://infotrope.net/2013/05/31/testing-paypal-express-with-activemerchants-bogusgateway-and-how-to-make-it-work)
36
+
37
+ ## Development
38
+
39
+ Run `bundle install` to get all the needed dependecies and `bundle exec rake` to run the tests.
40
+
41
+ ## Contributing
42
+
43
+ Create a bug report and / or pull request!
44
+
45
+
@@ -0,0 +1,9 @@
1
+ require "rake/testtask"
2
+ require "bundler/gem_tasks"
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.libs << 'test'
6
+ t.test_files = FileList['test/**/*_test.rb']
7
+ end
8
+
9
+ task :default => :test
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'active_merchant/paypal_bogus_gateway/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "active_merchant-paypal-bogus-gateway"
8
+ spec.version = ActiveMerchant::Ext::PaypalBogusGateway::VERSION
9
+ spec.authors = ["Philipp Fehre"]
10
+ spec.email = ["philipp@fehre.co.uk"]
11
+
12
+ spec.summary = %q{Test Payment Gateway for Paypal in ActiveMerchant}
13
+ spec.description = %q{Bogus Gateway useful for testing applications using ActiveMerchant with Paypal}
14
+ spec.homepage = "https://github.com/sideshowcoder/active_merchant-paypal-bogus-gateway"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.12"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+
24
+ spec.add_dependency "activemerchant"
25
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "active_merchant/paypal/bogus/gateway"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,51 @@
1
+ require "active_merchant/billing/gateways/bogus"
2
+ require "active_merchant/billing/gateways/paypal/paypal_express_response"
3
+
4
+ module ActiveMerchant #:nodoc:
5
+ module Billing #:nodoc:
6
+ class PaypalBogusGateway < BogusGateway
7
+
8
+ REDIRECT_URL = "https://bogus.paypal.com"
9
+
10
+ def setup_authorization money, options = {}
11
+ requires!(options, :return_url, :cancel_return_url)
12
+
13
+ PaypalExpressResponse.new true, SUCCESS_MESSAGE, { :Token => AUTHORIZATION }, :test => true
14
+ end
15
+
16
+ def setup_purchase money, options = {}
17
+ requires!(options, :return_url, :cancel_return_url)
18
+
19
+ PaypalExpressResponse.new true, SUCCESS_MESSAGE, { :Token => AUTHORIZATION }, :test => true
20
+ end
21
+
22
+ def authorize money, options = {}
23
+ requires!(options, :token, :payer_id)
24
+
25
+ case normalize(options[:token])
26
+ when '1'
27
+ PaypalExpressResponse.new false, FAILURE_MESSAGE, {:authorized_amount => money}, :test => true
28
+ else
29
+ PaypalExpressResponse.new true, SUCCESS_MESSAGE, {:authorized_amount => money}, :test => true, :authorization => AUTHORIZATION
30
+ end
31
+ end
32
+
33
+ def purchase money, options = {}
34
+ requires!(options, :token, :payer_id)
35
+
36
+ case normalize(options[:token])
37
+ when '1'
38
+ PaypalExpressResponse.new false, FAILURE_MESSAGE, {:amount => money}, :test => true
39
+ else
40
+ PaypalExpressResponse.new true, SUCCESS_MESSAGE, {:amount => money}, :test => true, :authorization => AUTHORIZATION
41
+ end
42
+ end
43
+
44
+ def redirect_url_for token
45
+ REDIRECT_URL
46
+ end
47
+
48
+ end
49
+ end
50
+ end
51
+
@@ -0,0 +1,7 @@
1
+ module ActiveMerchant
2
+ module Ext
3
+ module PaypalBogusGateway
4
+ VERSION = "0.1.0"
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: active_merchant-paypal-bogus-gateway
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Philipp Fehre
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-06-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: activemerchant
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Bogus Gateway useful for testing applications using ActiveMerchant with
56
+ Paypal
57
+ email:
58
+ - philipp@fehre.co.uk
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".travis.yml"
65
+ - Gemfile
66
+ - LICENSE
67
+ - README.md
68
+ - Rakefile
69
+ - active_merchant-paypal-bogus-gateway.gemspec
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/active_merchant/ext/paypal_bogus_gateway.rb
73
+ - lib/active_merchant/paypal_bogus_gateway/version.rb
74
+ homepage: https://github.com/sideshowcoder/active_merchant-paypal-bogus-gateway
75
+ licenses: []
76
+ metadata: {}
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubyforge_project:
93
+ rubygems_version: 2.4.3
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: Test Payment Gateway for Paypal in ActiveMerchant
97
+ test_files: []