mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
45 lines
1.7 KiB
Ruby
45 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Api::Admin::CustomerSerializer do
|
|
let(:tag_list) { ["one", "two", "three"] }
|
|
let(:customer) { create(:customer, tag_list:) }
|
|
let!(:tag_rule) {
|
|
create(:filter_order_cycles_tag_rule, enterprise: customer.enterprise,
|
|
preferred_customer_tags: "two")
|
|
}
|
|
|
|
it "serializes a customer with tags" do
|
|
tag_rule_mapping = TagRule.mapping_for(Enterprise.where(id: customer.enterprise_id))
|
|
customer_tag_list = { customer.id => tag_list }
|
|
serializer = Api::Admin::CustomerSerializer.new customer,
|
|
tag_rule_mapping:,
|
|
customer_tags: customer_tag_list
|
|
result = JSON.parse(serializer.to_json)
|
|
expect(result['email']).to eq customer.email
|
|
tags = result['tags']
|
|
expect(tags.length).to eq 3
|
|
expect(tags[0]).to eq("text" => 'one', "rules" => nil)
|
|
expect(tags[1]).to eq("text" => 'two', "rules" => 1)
|
|
|
|
expect(result['bill_address']['id']).to eq customer.bill_address.id
|
|
expect(result['bill_address']['address1']).to eq customer.bill_address.address1
|
|
expect(result['ship_address']).to be nil
|
|
end
|
|
|
|
it 'serializes a customer without tag_rule_mapping' do
|
|
serializer = Api::Admin::CustomerSerializer.new customer
|
|
result = JSON.parse(serializer.to_json)
|
|
|
|
result['tags'].each do |tag|
|
|
expect(tag['rules']).to be nil
|
|
end
|
|
end
|
|
|
|
it 'serializes a customer without customer_tags' do
|
|
serializer = Api::Admin::CustomerSerializer.new customer
|
|
result = JSON.parse(serializer.to_json)
|
|
|
|
expect(result['tags'].first['text']).to eq tag_list.first
|
|
end
|
|
end
|