Revision control
Copy as Markdown
Other Tools
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
"use strict";
const { AccountConfig } = ChromeUtils.importESModule(
);
add_task(function test_isOauthOnly() {
const config = new AccountConfig();
Assert.ok(!config.isOauthOnly(), "Should initially not be oAuth only");
config.incoming.auth = Ci.nsMsgAuthMethod.OAuth2;
Assert.ok(
!config.isOauthOnly(),
"One of two servers should still not be oAuth only"
);
config.outgoing.auth = Ci.nsMsgAuthMethod.OAuth2;
Assert.ok(
config.isOauthOnly(),
"When both incoming and outgoing use oauth, the config should be oAuth only"
);
});