summaryrefslogtreecommitdiff
path: root/billing/test/functional/customers_controller_test.rb
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-04-30 14:12:08 -0700
committerAzul <azul@leap.se>2013-07-17 10:47:13 +0200
commit7eab7e33730e12eeb460d2b3965a8712320aff54 (patch)
tree56ac203fb7f359e8374a9433a5763f4f5e3e4368 /billing/test/functional/customers_controller_test.rb
parent5442da999c8398b1e84162996f1e944c6496b095 (diff)
Very rough start to tests, which still doesn't really use FakeBraintree.
Diffstat (limited to 'billing/test/functional/customers_controller_test.rb')
-rw-r--r--billing/test/functional/customers_controller_test.rb57
1 files changed, 57 insertions, 0 deletions
diff --git a/billing/test/functional/customers_controller_test.rb b/billing/test/functional/customers_controller_test.rb
new file mode 100644
index 0000000..45a14ed
--- /dev/null
+++ b/billing/test/functional/customers_controller_test.rb
@@ -0,0 +1,57 @@
+require 'test_helper'
+
+class CustomersControllerTest < ActionController::TestCase
+
+ setup do
+ @user = FactoryGirl.create :user
+ @other_user = FactoryGirl.create :user
+ FakeBraintree.clear!
+ FakeBraintree.verify_all_cards!
+ testid = 'testid'
+ FakeBraintree::Customer.new({:credit_cards => [{:number=>"5105105105105100", :expiration_date=>"05/2013"}]}, {:id => testid, :merchant_id => Braintree::Configuration.merchant_id})
+ # any reason to call the create instance method on the FakeBraintree::Customer ?
+ @customer = Customer.new(:user_id => @other_user.id)
+ @customer.braintree_customer_id = testid
+ @customer.save
+
+ end
+
+ teardown do
+ @user.destroy
+ @other_user.destroy
+ @customer.destroy
+ end
+
+ test "no access if not logged in" do
+ get :new
+ assert_access_denied(true, false)
+ get :show, :id => @customer.braintree_customer_id
+ assert_access_denied(true, false)
+ get :edit, :id => @customer.braintree_customer_id
+ assert_access_denied(true, false)
+ end
+
+
+ test "should get new if logged in and not customer" do
+ login @user
+ get :new
+ assert_not_nil assigns(:tr_data)
+ assert_response :success
+ end
+
+ test "new should direct edit if user is already a customer" do
+ login @other_user
+ get :new
+ assert_response :redirect
+ assert_equal edit_customer_url(@customer.braintree_customer_id), response.header['Location']
+ end
+
+
+ test "show" do
+ login @other_user
+ # Below will fail, as when we go to fetch the customer data, Braintree::Customer.find(params[:id]) won't find the customer as it is a FakeBraintree customer.
+ #get :show, :id => @customer.braintree_customer_id
+
+ end
+
+end