mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:37:06 +08:00
5a3494b1e1
* Fixed an issue I introduced in the last PR where I am just archiving everything regardless of whether it is actually archived in Discourse man_facepalming * Refactor group list_mailboxes IMAP code to use providers, add specs, and add provider code to get the correct prodivder
28 lines
763 B
Ruby
28 lines
763 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Imap::Providers::Detector do
|
|
it "returns the gmail provider if the gmail imap server is used" do
|
|
config = {
|
|
server: "imap.gmail.com",
|
|
port: 993,
|
|
ssl: true,
|
|
username: "test@gmail.com",
|
|
password: "testpassword1"
|
|
}
|
|
expect(described_class.init_with_detected_provider(config)).to be_a(Imap::Providers::Gmail)
|
|
end
|
|
|
|
it "returns the generic provider if we don't have a special provider defined" do
|
|
config = {
|
|
server: "imap.yo.com",
|
|
port: 993,
|
|
ssl: true,
|
|
username: "test@yo.com",
|
|
password: "testpassword1"
|
|
}
|
|
expect(described_class.init_with_detected_provider(config)).to be_a(Imap::Providers::Generic)
|
|
end
|
|
end
|