Merge branch 'api' of https://github.com/ZeusWPI/Tab into api
This commit is contained in:
commit
990ec00260
7 changed files with 81 additions and 24 deletions
|
@ -16,10 +16,8 @@ class ApplicationController < ActionController::Base
|
|||
end
|
||||
|
||||
def current_ability
|
||||
if current_user
|
||||
@current_ability ||= Ability.new(current_user)
|
||||
elsif current_client
|
||||
@current_ability ||= ClientAbility.new(current_client)
|
||||
end
|
||||
@current_ability ||=
|
||||
current_client.try { |c| ClientAbility.new(c) } ||
|
||||
Ability.new(current_user)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
class TransactionsController < ApplicationController
|
||||
load_and_authorize_resource
|
||||
skip_before_filter :verify_authenticity_token, only: :create
|
||||
|
||||
before_action :authenticate_user!, except: :create
|
||||
|
@ -34,12 +35,14 @@ class TransactionsController < ApplicationController
|
|||
|
||||
def transaction_params
|
||||
t = params.require(:transaction)
|
||||
.permit(:debtor, :creditor, :amount, :message)
|
||||
.permit(:debtor, :creditor, :message, :euros, :cents)
|
||||
|
||||
t.update({
|
||||
{
|
||||
debtor: User.find_by(name: t[:debtor]) || User.zeus,
|
||||
creditor: User.find_by(name: t[:creditor]) || User.zeus,
|
||||
issuer: current_client || current_user
|
||||
})
|
||||
issuer: current_client || current_user,
|
||||
amount: (t[:euros].to_f*100 + t[:cents].to_f).to_i,
|
||||
message: t[:message]
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2,12 +2,10 @@ class Ability
|
|||
include CanCan::Ability
|
||||
|
||||
def initialize(user)
|
||||
user ||= User.new # guest user (not logged in)
|
||||
return unless user
|
||||
|
||||
if user.penning?
|
||||
can :manage, :all
|
||||
else
|
||||
can :manage, :all if user.penning?
|
||||
can :read, user, id: user.id
|
||||
end
|
||||
can :create, Transaction, debtor: user
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
= render 'partials/form_errors', object: @transaction
|
||||
= simple_form_for @transaction do |f|
|
||||
- if current_user.penning
|
||||
= f.collection_select :debtor, User.all, :name, :name, {}, { class: 'select2-selector' }
|
||||
- else
|
||||
= f.hidden_field :debtor, value: current_user.name
|
||||
= f.collection_select :creditor, User.all, :name, :name, {}, { class: 'select2-selector' }
|
||||
= f.input :amount
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
require 'rails_helper'
|
||||
require 'spec_helper'
|
||||
|
||||
RSpec.describe TransactionsController, type: :controller do
|
||||
describe "creating transaction" do
|
||||
|
@ -8,14 +9,70 @@ RSpec.describe TransactionsController, type: :controller do
|
|||
sign_in @debtor
|
||||
end
|
||||
|
||||
it "should create a valid transaction" do
|
||||
expect do
|
||||
put :create, { transaction: {
|
||||
context "with valid attributes" do
|
||||
before :each do
|
||||
@attributes = { transaction: {
|
||||
debtor: @debtor.name,
|
||||
creditor: @creditor.name,
|
||||
amount: 20,
|
||||
message: "hoi"
|
||||
cents: 70,
|
||||
message: 'hoi'
|
||||
}}
|
||||
end.to change {Transaction.count}.by(1)
|
||||
post :create, @attributes
|
||||
@transaction = Transaction.last
|
||||
end
|
||||
|
||||
it "should create a new transaction" do
|
||||
expect {post :create, @attributes}.to change {Transaction.count}.by(1)
|
||||
end
|
||||
|
||||
it "should set debtor" do
|
||||
expect(@transaction.debtor).to eq(@debtor)
|
||||
end
|
||||
|
||||
it "should set amount" do
|
||||
expect(@transaction.amount).to eq(70)
|
||||
end
|
||||
|
||||
it "should set creditor" do
|
||||
expect(@transaction.creditor).to eq(@creditor)
|
||||
end
|
||||
|
||||
it "should set issuer" do
|
||||
expect(@transaction.issuer).to eq(@debtor)
|
||||
end
|
||||
end
|
||||
|
||||
context "with float euros" do
|
||||
it "should set correct amount" do
|
||||
post :create, transaction: {
|
||||
debtor: @debtor.name,
|
||||
creditor: @creditor.name,
|
||||
euros: 10.5,
|
||||
message: "Omdat je een leuke jongen bent!"
|
||||
}
|
||||
expect(Transaction.last.amount).to eq(1050)
|
||||
end
|
||||
end
|
||||
|
||||
context "with negative amount" do
|
||||
it "should be refused" do
|
||||
expect do
|
||||
post :create, transaction: attributes_for(:transaction, cents: -20)
|
||||
end.not_to change {Transaction.count}
|
||||
end
|
||||
end
|
||||
|
||||
context "for other user" do
|
||||
it "should be refused" do
|
||||
expect do
|
||||
post :create, transaction: {
|
||||
debtor: @creditor.name,
|
||||
creditor: @debtor.name,
|
||||
euros: 10000000,
|
||||
message: 'DIT IS OVERVAL'
|
||||
}
|
||||
end.not_to change {Transaction.count}
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -11,5 +11,4 @@ require 'rails_helper'
|
|||
# end
|
||||
# end
|
||||
RSpec.describe TransactionsHelper, type: :helper do
|
||||
pending "add some examples to (or delete) #{__FILE__}"
|
||||
end
|
||||
|
|
|
@ -11,5 +11,4 @@ require 'rails_helper'
|
|||
# end
|
||||
# end
|
||||
RSpec.describe UsersHelper, type: :helper do
|
||||
pending "add some examples to (or delete) #{__FILE__}"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue