Revert "Applied rubocop suggestions."

This reverts commit 1903a0b3c480369875df416bbf1299cec428bc6a.
This commit is contained in:
Martin Gruner 2021-07-09 15:05:05 +02:00
parent 2b6b268eb9
commit 1ab185543f
27 changed files with 27 additions and 27 deletions

View File

@ -3,7 +3,7 @@
require 'browser_test_helper'
class IntegrationCtiTest < TestCase
before do
setup do
if !ENV['CTI_TOKEN']
raise "ERROR: Need CTI_TOKEN - hint CTI_TOKEN='some_token'"
end

View File

@ -24,7 +24,7 @@ class TestCase < ActiveSupport::TestCase
DEBUG = true
before do
setup do
# print current test case to STDOUT
# for status reasoning and debugging purposes
source_location = self.class.instance_method(method_name).source_location

View File

@ -5,7 +5,7 @@ require 'test_helper'
class ElasticsearchActiveTest < ActiveSupport::TestCase
include SearchindexHelper
before do
setup do
configure_elasticsearch(required: true)

View File

@ -5,7 +5,7 @@ require 'test_helper'
class ElasticsearchTest < ActiveSupport::TestCase
include SearchindexHelper
before do
setup do
configure_elasticsearch(required: true)

View File

@ -4,7 +4,7 @@ require 'test_helper'
require 'net/imap'
class EmailKeepOnServerTest < ActiveSupport::TestCase
before do
setup do
if ENV['KEEP_ON_MAIL_SERVER'].blank?
raise "Need KEEP_ON_MAIL_SERVER as ENV variable like export KEEP_ON_MAIL_SERVER='mx.example.com'"

View File

@ -5,7 +5,7 @@ require 'net/imap'
class EmailPostmasterToSender < ActiveSupport::TestCase
before do
setup do
Setting.set('postmaster_max_size', 0.1)
@test_id = rand(999_999_999)

View File

@ -5,7 +5,7 @@ require 'webmock/minitest'
class GeoLocationTest < ActiveSupport::TestCase
before do
setup do
@mock = true
#WebMock.allow_net_connect!
end

View File

@ -5,7 +5,7 @@ require 'integration_test_helper'
class ReportTest < ActiveSupport::TestCase
include SearchindexHelper
before do
setup do
# create attribute
ObjectManager::Attribute.add(

View File

@ -6,7 +6,7 @@ class UserAgentTest < ActiveSupport::TestCase
host = 'https://web-test.dc.zammad.com'
#host = 'http://127.0.0.1:3003'
before do
setup do
if ENV['ZAMMAD_PROXY_TEST'] == 'true'
Setting.set('proxy', ENV['ZAMMAD_PROXY'])
Setting.set('proxy_username', ENV['ZAMMAD_PROXY_USERNAME'])

View File

@ -25,7 +25,7 @@ class ActiveSupport::TestCase
# set system mode to done / to activate
Setting.set('system_init_done', true)
before do
setup do
# clear cache
Cache.clear

View File

@ -22,7 +22,7 @@ class ActiveSupport::TestCase
# set system mode to done / to activate
Setting.set('system_init_done', true)
before do
setup do
# exit all threads
Thread.list.each do |thread|

View File

@ -4,7 +4,7 @@ require 'test_helper'
class ActivityStreamTest < ActiveSupport::TestCase
before do
setup do
roles = Role.where(name: %w[Admin Agent])
groups = Group.where(name: 'Users')
@admin_user = User.create_or_update(

View File

@ -4,7 +4,7 @@ require 'test_helper'
class ChatTest < ActiveSupport::TestCase
before do
setup do
groups = Group.all
roles = Role.where(name: %w[Agent])
@agent1 = User.create!(

View File

@ -4,7 +4,7 @@ require 'test_helper'
class EmailProcessSenderIsSystemAddressOrAgent < ActiveSupport::TestCase
before do
setup do
EmailAddress.create_or_update(
channel_id: 1,
realname: 'My System',

View File

@ -9,7 +9,7 @@ class IntegrationIcingaTest < ActiveSupport::TestCase
# http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/monitoring-basics#host-states
# http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/monitoring-basics#service-states
before do
setup do
Setting.set('icinga_integration', true)
Setting.set('icinga_sender', 'icinga2@monitoring.example.com')
end

View File

@ -7,7 +7,7 @@ class IntegrationMonitTest < ActiveSupport::TestCase
# according
# https://mmonit.com/monit/documentation/#ALERT-MESSAGES
before do
setup do
Setting.set('monit_integration', true)
Setting.set('monit_sender', 'monit@monitoring.example.com')
end

View File

@ -7,7 +7,7 @@ class IntegrationNagiosTest < ActiveSupport::TestCase
# according
# https://github.com/NagiosEnterprises/nagioscore/blob/754218e67653929a58938b99ef6b6039b6474fe4/sample-config/template-object/commands.cfg.in#L35
before do
setup do
Setting.set('nagios_integration', true)
Setting.set('nagios_sender', 'nagios2@monitoring.example.com')
end

View File

@ -4,7 +4,7 @@ require 'test_helper'
class OnlineNotificationTest < ActiveSupport::TestCase
before do
setup do
role = Role.lookup(name: 'Agent')
@group = Group.create_or_update(
name: 'OnlineNotificationTest',

View File

@ -4,7 +4,7 @@ require 'test_helper'
class TicketLastOwnerUpdateTest < ActiveSupport::TestCase
before do
setup do
Group.create_or_update(
name: 'LastOwnerUpdate',
email_address: EmailAddress.first,

View File

@ -3,7 +3,7 @@
require 'test_helper'
class TicketNotificationTest < ActiveSupport::TestCase
before do
setup do
Setting.set('timezone_default', 'Europe/Berlin')
Trigger.create_or_update(
name: 'auto reply - new ticket',

View File

@ -4,7 +4,7 @@ require 'test_helper'
class TicketOverviewOutOfOfficeTest < ActiveSupport::TestCase
before do
setup do
group = Group.create_or_update(
name: 'OverviewReplacementTest',
updated_at: '2015-02-05 16:37:00',

View File

@ -4,7 +4,7 @@ require 'test_helper'
class TicketOverviewTest < ActiveSupport::TestCase
before do
setup do
group = Group.create_or_update(
name: 'OverviewTest',
updated_at: '2015-02-05 16:37:00',

View File

@ -4,7 +4,7 @@ require 'test_helper'
class TicketSelectorTest < ActiveSupport::TestCase
before do
setup do
@group = Group.create_or_update(
name: 'SelectorTest',
updated_at: '2015-02-05 16:37:00',

View File

@ -4,7 +4,7 @@ require 'test_helper'
class TicketTest < ActiveSupport::TestCase
before do
setup do
Ticket.destroy_all
end

View File

@ -4,7 +4,7 @@ require 'test_helper'
class TicketTriggerExtendedTest < ActiveSupport::TestCase
before do
setup do
Setting.set('ticket_trigger_recursive', true)
end

View File

@ -4,7 +4,7 @@ require 'test_helper'
class TicketTriggerRecursiveDisabledTest < ActiveSupport::TestCase
before do
setup do
Setting.set('ticket_trigger_recursive', false)
end

View File

@ -4,7 +4,7 @@ require 'test_helper'
class TicketTriggerTest < ActiveSupport::TestCase
before do
setup do
Setting.set('ticket_trigger_recursive', true)
end