123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- FactoryBot.define do
- factory :channel do
- area { 'Email::Dummy' }
- group { Group.find(1) }
- active { true }
- options { nil }
- preferences { nil }
- updated_by_id { 1 }
- created_by_id { 1 }
- factory :email_channel do
- area { 'Email::Account' }
- options do
- {
- inbound: inbound,
- outbound: outbound,
- }
- end
- transient do
- inbound do
- {
- adapter: 'null', options: {}
- }
- end
- outbound do
- {
- adapter: 'sendmail'
- }
- end
- end
- end
- factory :twitter_channel do
- area { 'Twitter::Account' }
- options do
- {
- adapter: 'twitter',
- user: {
- id: oauth_token&.split('-')&.first,
- screen_name: 'APITesting001',
- name: 'Test API Account',
- },
- auth: {
- external_credential_id: external_credential.id,
- oauth_token: oauth_token,
- oauth_token_secret: oauth_token_secret,
- consumer_key: consumer_key,
- consumer_secret: consumer_secret,
- },
- sync: {
- webhook_id: '',
- mentions: {
- group_id: Group.first.id
- },
- direct_messages: {
- group_id: Group.first.id
- },
- search: [
- {
- term: search_term,
- group_id: Group.first.id
- },
- ],
- },
- subscribed_to_webhook_id: external_credential.credentials[:webhook_id],
- }.deep_merge(custom_options)
- end
- transient do
- custom_options { {} }
- external_credential { create(:twitter_credential) }
- oauth_token { external_credential.credentials[:oauth_token] }
- oauth_token_secret { external_credential.credentials[:oauth_token_secret] }
- consumer_key { external_credential.credentials[:consumer_key] }
- consumer_secret { external_credential.credentials[:consumer_secret] }
- search_term { 'zammad' }
- end
- trait :legacy do
- transient do
- custom_options { { sync: { import_older_tweets: true } } }
- end
- end
- trait :invalid do
- transient do
- external_credential { create(:twitter_credential, :invalid) }
- end
- end
- end
- factory :facebook_channel do
- area { 'Facebook::Account' }
- options do
- {
- adapter: 'facebook',
- user: {
- id: ENV['FACEBOOK_ADMIN_USER_ID'],
- name: "#{ENV['FACEBOOK_ADMIN_FIRSTNAME']} #{ENV['FACEBOOK_ADMIN_LASTNAME']}",
- },
- auth: {
- access_token: ENV['FACEBOOK_ADMIN_ACCESS_TOKEN'],
- },
- sync: {
- pages: {
- ENV['FACEBOOK_PAGE_1_ID'] => {
- group_id: Group.first.id,
- }
- }
- },
- pages: [
- {
- id: ENV['FACEBOOK_PAGE_1_ID'],
- name: ENV['FACEBOOK_PAGE_1_NAME'],
- access_token: ENV['FACEBOOK_PAGE_1_ACCCESS_TOKEN'],
- },
- {
- id: ENV['FACEBOOK_PAGE_2_ID'],
- name: ENV['FACEBOOK_PAGE_2_NAME'],
- access_token: ENV['FACEBOOK_PAGE_2_ACCCESS_TOKEN'],
- }
- ],
- }
- end
- end
- factory :google_channel do
- area { 'Google::Account' }
- options do
- {
- 'inbound' => {
- 'adapter' => 'imap',
- 'options' => {
- 'auth_type' => 'XOAUTH2',
- 'host' => 'imap.gmail.com',
- 'ssl' => 'ssl',
- 'user' => ENV['GMAIL_USER'],
- 'folder' => '',
- 'keep_on_server' => false,
- }
- },
- 'outbound' => {
- 'adapter' => 'smtp',
- 'options' => {
- 'host' => 'smtp.gmail.com',
- 'port' => 465,
- 'ssl' => true,
- 'user' => ENV['GMAIL_USER'],
- 'authentication' => 'xoauth2',
- }
- },
- 'auth' => {
- 'type' => 'XOAUTH2',
- 'provider' => 'google',
- 'access_token' => 'xxx',
- 'expires_in' => 3599,
- 'refresh_token' => ENV['GMAIL_REFRESH_TOKEN'],
- 'scope' => 'https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile https://mail.google.com/ openid',
- 'token_type' => 'Bearer',
- 'id_token' => 'xxx',
- 'created_at' => 30.days.ago,
- 'client_id' => ENV['GMAIL_CLIENT_ID'],
- 'client_secret' => ENV['GMAIL_CLIENT_SECRET'],
- }
- }
- end
- end
- factory :microsoft365_channel do
- area { 'Microsoft365::Account' }
- options do
- {
- 'inbound' => {
- 'adapter' => 'imap',
- 'options' => {
- 'auth_type' => 'XOAUTH2',
- 'host' => 'outlook.office365.com',
- 'ssl' => 'ssl',
- 'user' => ENV['MICROSOFT365_USER'],
- 'folder' => '',
- 'keep_on_server' => false,
- }
- },
- 'outbound' => {
- 'adapter' => 'smtp',
- 'options' => {
- 'host' => 'smtp.office365.com',
- 'port' => 587,
- 'user' => ENV['MICROSOFT365_USER'],
- 'authentication' => 'xoauth2',
- }
- },
- 'auth' => {
- 'type' => 'XOAUTH2',
- 'provider' => 'microsoft365',
- 'access_token' => 'xxx',
- 'expires_in' => 3599,
- 'refresh_token' => ENV['MICROSOFT365_REFRESH_TOKEN'],
- 'scope' => 'https://outlook.office.com/IMAP.AccessAsUser.All https://outlook.office.com/SMTP.Send offline_access openid profile email',
- 'token_type' => 'Bearer',
- 'id_token' => 'xxx',
- 'created_at' => 30.days.ago,
- 'client_id' => ENV['MICROSOFT365_CLIENT_ID'],
- 'client_secret' => ENV['MICROSOFT365_CLIENT_SECRET'],
- 'client_tenant' => ENV['MICROSOFT365_CLIENT_TENANT'],
- }
- }
- end
- end
- factory :sms_message_bird_channel do
- area { 'Sms::Account' }
- status_in { 'ok' }
- status_out { 'ok' }
- options do
- {
- adapter: 'sms/message_bird',
- webhook: "http://localhost:3000/api/v1/sms_webhook/#{webhook_token}",
- sender: '+490123456789',
- token: external_credential.credentials['token'],
- webhook_token: webhook_token,
- }.deep_merge(custom_options)
- end
- transient do
- custom_options { {} }
- external_credential { create(:sms_message_bird_credential) }
- webhook_token { Faker::Crypto.md5 }
- end
- end
- factory :telegram_channel do
- area { 'Telegram::Bot' }
- options do
- {
- bot: {
- id: bid,
- username: "#{Faker::Internet.username}bot",
- first_name: Faker::Name.unique.first_name,
- last_name: Faker::Name.unique.last_name,
- },
- callback_token: callback_token,
- callback_url: "http://localhost:3000/api/v1/channels_telegram_webhook/#{callback_token}?bid=#{bid}",
- api_token: "#{bid}:#{external_credential.credentials['api_token']}",
- welcome: Faker::Lorem.sentence,
- goodbye: Faker::Lorem.sentence,
- }.deep_merge(custom_options)
- end
- transient do
- custom_options { {} }
- external_credential { create(:telegram_credential) }
- bid { Faker::Number.unique.number(digits: 10) }
- callback_token { Faker::Alphanumeric.alphanumeric(number: 14) }
- end
- end
- end
- end
|