1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/test/integration/themes_test.rb

69 lines
1.8 KiB
Ruby
Raw Normal View History

2023-01-09 10:06:32 +01:00
# frozen_string_literal: true
require 'test_helper'
class ThemesTest < ActionDispatch::IntegrationTest
def setup
@admin = User.find_by(username: 'admin')
login_as(@admin, scope: :user)
end
test 'create a theme' do
post '/api/themes',
params: {
name: 'Cuisine'
}.to_json,
headers: default_headers
# Check response format & status
assert_equal 201, response.status, response.body
2023-02-24 17:26:55 +01:00
assert_match Mime[:json].to_s, response.content_type
2023-01-09 10:06:32 +01:00
# Check the correct tag was created
res = json_response(response.body)
theme = Theme.where(id: res[:id]).first
assert_not_nil theme, 'theme was not created in database'
assert_equal 'Cuisine', res[:name]
end
test 'update a theme' do
patch '/api/themes/1',
params: {
name: 'Objets de la maison'
}.to_json,
headers: default_headers
# Check response format & status
assert_equal 200, response.status, response.body
2023-02-24 17:26:55 +01:00
assert_match Mime[:json].to_s, response.content_type
2023-01-09 10:06:32 +01:00
# Check the tag was updated
res = json_response(response.body)
assert_equal 1, res[:id]
assert_equal 'Objets de la maison', res[:name]
end
test 'list all themes' do
get '/api/themes'
# Check response format & status
assert_equal 200, response.status, response.body
2023-02-24 17:26:55 +01:00
assert_match Mime[:json].to_s, response.content_type
2023-01-09 10:06:32 +01:00
# Check the list items are ok
themes = json_response(response.body)
assert_equal Theme.count, themes.count
end
test 'delete a theme' do
theme = Theme.create!(name: 'delete me')
delete "/api/themes/#{theme.id}"
assert_response :success
assert_empty response.body
assert_raise ActiveRecord::RecordNotFound do
theme.reload
end
end
end