This source file includes following definitions.
- SetUp
- TEST_F
- TEST_F
- TEST_F
- TEST_F
- TEST_F
- TEST_F
#include "components/signin/core/browser/signin_error_controller.h"
#include <functional>
#include "base/memory/scoped_ptr.h"
#include "components/signin/core/browser/fake_auth_status_provider.h"
#include "testing/gtest/include/gtest/gtest.h"
static const char kTestAccountId[] = "testuser@test.com";
static const char kOtherTestAccountId[] = "otheruser@test.com";
class SigninErrorControllerTest : public testing::Test {
public:
virtual void SetUp() OVERRIDE {
error_controller_.reset(new SigninErrorController());
}
scoped_ptr<SigninErrorController> error_controller_;
};
TEST_F(SigninErrorControllerTest, NoErrorAuthStatusProviders) {
scoped_ptr<FakeAuthStatusProvider> provider;
ASSERT_FALSE(error_controller_->HasError());
provider.reset(new FakeAuthStatusProvider(error_controller_.get()));
ASSERT_FALSE(error_controller_->HasError());
provider.reset();
ASSERT_FALSE(error_controller_->HasError());
}
TEST_F(SigninErrorControllerTest, ErrorAuthStatusProvider) {
scoped_ptr<FakeAuthStatusProvider> provider;
scoped_ptr<FakeAuthStatusProvider> error_provider;
provider.reset(new FakeAuthStatusProvider(error_controller_.get()));
ASSERT_FALSE(error_controller_->HasError());
error_provider.reset(new FakeAuthStatusProvider(error_controller_.get()));
error_provider->SetAuthError(kTestAccountId, GoogleServiceAuthError(
GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
ASSERT_TRUE(error_controller_->HasError());
error_provider.reset();
ASSERT_FALSE(error_controller_->HasError());
provider.reset();
ASSERT_FALSE(error_controller_->HasError());
}
TEST_F(SigninErrorControllerTest, AuthStatusProviderErrorTransition) {
scoped_ptr<FakeAuthStatusProvider> provider0(
new FakeAuthStatusProvider(error_controller_.get()));
scoped_ptr<FakeAuthStatusProvider> provider1(
new FakeAuthStatusProvider(error_controller_.get()));
ASSERT_FALSE(error_controller_->HasError());
provider0->SetAuthError(
kTestAccountId,
GoogleServiceAuthError(
GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
ASSERT_TRUE(error_controller_->HasError());
provider1->SetAuthError(
kTestAccountId,
GoogleServiceAuthError(GoogleServiceAuthError::ACCOUNT_DISABLED));
ASSERT_TRUE(error_controller_->HasError());
provider0->SetAuthError(kTestAccountId,
GoogleServiceAuthError::AuthErrorNone());
ASSERT_TRUE(error_controller_->HasError());
provider1->SetAuthError(kTestAccountId,
GoogleServiceAuthError::AuthErrorNone());
ASSERT_FALSE(error_controller_->HasError());
provider0.reset();
provider1.reset();
ASSERT_FALSE(error_controller_->HasError());
}
TEST_F(SigninErrorControllerTest, AuthStatusProviderAccountTransition) {
scoped_ptr<FakeAuthStatusProvider> provider0(
new FakeAuthStatusProvider(error_controller_.get()));
scoped_ptr<FakeAuthStatusProvider> provider1(
new FakeAuthStatusProvider(error_controller_.get()));
ASSERT_FALSE(error_controller_->HasError());
provider0->SetAuthError(
kTestAccountId,
GoogleServiceAuthError(
GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
provider1->SetAuthError(
kOtherTestAccountId,
GoogleServiceAuthError(GoogleServiceAuthError::NONE));
ASSERT_TRUE(error_controller_->HasError());
ASSERT_STREQ(kTestAccountId,
error_controller_->error_account_id().c_str());
provider1->set_error_without_status_change(
GoogleServiceAuthError(
GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
provider0->set_error_without_status_change(
GoogleServiceAuthError(GoogleServiceAuthError::NONE));
error_controller_->AuthStatusChanged();
ASSERT_TRUE(error_controller_->HasError());
ASSERT_STREQ(kOtherTestAccountId,
error_controller_->error_account_id().c_str());
provider0->set_error_without_status_change(
GoogleServiceAuthError::AuthErrorNone());
provider1->set_error_without_status_change(
GoogleServiceAuthError::AuthErrorNone());
error_controller_->AuthStatusChanged();
ASSERT_FALSE(error_controller_->HasError());
provider0.reset();
provider1.reset();
ASSERT_FALSE(error_controller_->HasError());
}
TEST_F(SigninErrorControllerTest, AuthStatusEnumerateAllErrors) {
typedef struct {
GoogleServiceAuthError::State error_state;
bool is_error;
} ErrorTableEntry;
ErrorTableEntry table[] = {
{ GoogleServiceAuthError::NONE, false },
{ GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS, true },
{ GoogleServiceAuthError::USER_NOT_SIGNED_UP, true },
{ GoogleServiceAuthError::CONNECTION_FAILED, false },
{ GoogleServiceAuthError::CAPTCHA_REQUIRED, true },
{ GoogleServiceAuthError::ACCOUNT_DELETED, true },
{ GoogleServiceAuthError::ACCOUNT_DISABLED, true },
{ GoogleServiceAuthError::SERVICE_UNAVAILABLE, true },
{ GoogleServiceAuthError::TWO_FACTOR, true },
{ GoogleServiceAuthError::REQUEST_CANCELED, true },
{ GoogleServiceAuthError::HOSTED_NOT_ALLOWED, true },
{ GoogleServiceAuthError::UNEXPECTED_SERVICE_RESPONSE, true },
{ GoogleServiceAuthError::SERVICE_ERROR, true },
};
COMPILE_ASSERT(ARRAYSIZE_UNSAFE(table) == GoogleServiceAuthError::NUM_STATES,
kTable_size_does_not_match_number_of_auth_error_types);
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(table); ++i) {
FakeAuthStatusProvider provider(error_controller_.get());
provider.SetAuthError(kTestAccountId,
GoogleServiceAuthError(table[i].error_state));
EXPECT_EQ(error_controller_->HasError(), table[i].is_error);
if (table[i].is_error) {
EXPECT_EQ(table[i].error_state,
error_controller_->auth_error().state());
EXPECT_STREQ(kTestAccountId,
error_controller_->error_account_id().c_str());
} else {
EXPECT_EQ(GoogleServiceAuthError::NONE,
error_controller_->auth_error().state());
EXPECT_STREQ("",
error_controller_->error_account_id().c_str());
}
}
}
TEST_F(SigninErrorControllerTest, AuthStatusChange) {
scoped_ptr<FakeAuthStatusProvider> fake_provider0(
new FakeAuthStatusProvider(error_controller_.get()));
scoped_ptr<FakeAuthStatusProvider> fake_provider1(
new FakeAuthStatusProvider(error_controller_.get()));
std::less<SigninErrorController::AuthStatusProvider*> compare;
FakeAuthStatusProvider* provider0 =
compare(fake_provider0.get(), fake_provider1.get()) ?
fake_provider0.get() : fake_provider1.get();
FakeAuthStatusProvider* provider1 =
provider0 == fake_provider0.get() ?
fake_provider1.get() : fake_provider0.get();
provider0->SetAuthError(
kTestAccountId,
GoogleServiceAuthError(
GoogleServiceAuthError::NONE));
provider1->SetAuthError(
kOtherTestAccountId,
GoogleServiceAuthError(
GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS));
ASSERT_EQ(GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS,
error_controller_->auth_error().state());
ASSERT_STREQ(kOtherTestAccountId,
error_controller_->error_account_id().c_str());
provider1->SetAuthError(
kOtherTestAccountId,
GoogleServiceAuthError(
GoogleServiceAuthError::SERVICE_UNAVAILABLE));
ASSERT_EQ(GoogleServiceAuthError::SERVICE_UNAVAILABLE,
error_controller_->auth_error().state());
ASSERT_STREQ(kOtherTestAccountId,
error_controller_->error_account_id().c_str());
provider0->SetAuthError(
kTestAccountId,
GoogleServiceAuthError(
GoogleServiceAuthError::UNEXPECTED_SERVICE_RESPONSE));
ASSERT_EQ(GoogleServiceAuthError::SERVICE_UNAVAILABLE,
error_controller_->auth_error().state());
ASSERT_STREQ(kOtherTestAccountId,
error_controller_->error_account_id().c_str());
provider1->SetAuthError(
kOtherTestAccountId,
GoogleServiceAuthError(
GoogleServiceAuthError::NONE));
ASSERT_EQ(GoogleServiceAuthError::UNEXPECTED_SERVICE_RESPONSE,
error_controller_->auth_error().state());
ASSERT_STREQ(kTestAccountId,
error_controller_->error_account_id().c_str());
fake_provider0.reset();
fake_provider1.reset();
ASSERT_FALSE(error_controller_->HasError());
}