mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-31 04:32:06 +08:00
Merge pull request #1293 from czbiohub/mc-SCI-2698
close SCI-2698; unit tests for DELETE inventory item [SCI-2698]
This commit is contained in:
commit
3099725065
1 changed files with 46 additions and 0 deletions
|
@ -126,4 +126,50 @@ RSpec.describe 'Api::V1::InventoryItemsController', type: :request do
|
|||
expect(hash_body).to match({})
|
||||
end
|
||||
end
|
||||
|
||||
describe 'DELETE inventory_items, #destroy' do
|
||||
it 'Destroys inventory item' do
|
||||
deleted_id = @teams.first.repositories.first.repository_rows.last.id
|
||||
delete api_v1_team_inventory_item_path(
|
||||
id: deleted_id,
|
||||
team_id: @teams.first.id,
|
||||
inventory_id: @teams.first.repositories.first.id
|
||||
), headers: @valid_headers
|
||||
expect(response).to have_http_status(200)
|
||||
expect(RepositoryRow.where(id: deleted_id)).to_not exist
|
||||
expect(RepositoryCell.where(repository_row: deleted_id).count).to equal 0
|
||||
end
|
||||
|
||||
it 'Invalid request, non existing inventory item' do
|
||||
deleted_id = RepositoryRow.last.id + 1
|
||||
delete api_v1_team_inventory_item_path(
|
||||
id: deleted_id,
|
||||
team_id: @teams.first.id,
|
||||
inventory_id: @teams.first.repositories.first.id
|
||||
), headers: @valid_headers
|
||||
expect(response).to have_http_status(404)
|
||||
end
|
||||
|
||||
it 'When invalid request, incorrect repository' do
|
||||
deleted_id = @teams.first.repositories.first.repository_rows.last.id
|
||||
delete api_v1_team_inventory_item_path(
|
||||
id: deleted_id,
|
||||
team_id: @teams.first.id,
|
||||
inventory_id: @teams.second.repositories.first.id
|
||||
), headers: @valid_headers
|
||||
expect(response).to have_http_status(404)
|
||||
expect(RepositoryRow.where(id: deleted_id)).to exist
|
||||
end
|
||||
|
||||
it 'When invalid request, repository from another team' do
|
||||
deleted_id = @teams.first.repositories.first.repository_rows.last.id
|
||||
delete api_v1_team_inventory_item_path(
|
||||
id: deleted_id,
|
||||
team_id: @teams.second.id,
|
||||
inventory_id: @teams.first.repositories.first.id
|
||||
), headers: @valid_headers
|
||||
expect(response).to have_http_status(403)
|
||||
expect(RepositoryRow.where(id: deleted_id)).to exist
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue