# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/ require 'rails_helper' RSpec.describe Tag, type: :request do describe 'request handling', authenticated_as: :agent do let(:agent) { create(:agent) } context 'tag adding' do it 'returns created' do post '/api/v1/tags/add', params: { object: 'Foo', item: 'bar', o_id: 1 } expect(response).to have_http_status(:created) end it 'deletes tag' do post '/api/v1/tags/add', params: { object: 'Foo', item: 'bar', o_id: 1 } expect(described_class.tag_list({ object: 'Foo', item: 'bar', o_id: 1 })).to be_present end end context 'tag removal', authenticated_as: :agent do before do described_class.tag_add(object: 'Foo', item: 'bar', o_id: 1, created_by_id: 1) end it 'returns ok' do delete '/api/v1/tags/remove', params: { object: 'Foo', item: 'bar', o_id: 1 } expect(response).to have_http_status(:ok) end it 'deletes tag' do delete '/api/v1/tags/remove', params: { object: 'Foo', item: 'bar', o_id: 1 } expect(described_class.tag_list({ object: 'Foo', item: 'bar', o_id: 1 })).to be_empty end end context 'tag search' do let!(:tags) do [ Tag::Item.lookup_by_name_and_create('foobar'), Tag::Item.lookup_by_name_and_create('xxxxxxxxx_DUMMY_VALUE1'), Tag::Item.lookup_by_name_and_create('121212121_DUMMY_VALUE2'), Tag::Item.lookup_by_name_and_create('oxoxoxoxo_DUMMY_VALUE3'), ] end let(:foobar_tag) { tags.first } shared_examples 'foobar tag found using' do |search_term:| it "found 1 tag using search term '#{search_term}'" do get '/api/v1/tag_search', params: { term: search_term } expect(response).to have_http_status(:ok) expect(json_response).to contain_exactly('id' => foobar_tag.id, 'value' => foobar_tag.name) end end shared_examples 'no tag found using' do |search_term:| it "found 0 tags using search term '#{search_term}'" do get '/api/v1/tag_search', params: { term: search_term } expect(response).to have_http_status(:ok) expect(json_response).to contain_exactly end end shared_examples 'all tags found using' do |search_term:| it "found all tags using search term '#{search_term}'" do get '/api/v1/tag_search', params: { term: search_term } expect(response).to have_http_status(:ok) expect(json_response.size).to eq(Tag::Item.count) end end describe 'using prefix search' do include_examples 'foobar tag found using', search_term: 'foobar' include_examples 'foobar tag found using', search_term: 'foo' include_examples 'foobar tag found using', search_term: 'f' end describe 'using substring search (added via Enhancement #2569 - Enhance tag search to use fulltext search)' do include_examples 'foobar tag found using', search_term: 'bar' include_examples 'foobar tag found using', search_term: 'ar' include_examples 'foobar tag found using', search_term: 'oo' end describe 'using wildcard search' do include_examples 'all tags found using', search_term: ' ' include_examples 'all tags found using', search_term: ' ' end describe 'using invalid search terms' do include_examples 'no tag found using', search_term: 'WRONG_VALUE' include_examples 'no tag found using', search_term: '-' include_examples 'no tag found using', search_term: 'fooar' include_examples 'no tag found using', search_term: '1foobar' include_examples 'no tag found using', search_term: 'foobar2' end end end end