blob: 3ff7e1831b9a1f5dc71bc69af3cd888b195e5f66 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include <string>
#include "base/values.h"
#include "components/sync/driver/sync_internals_util.h"
#include "components/sync/test/test_sync_service.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace syncer::sync_ui_util {
namespace {
TEST(SyncUIUtilTestAbout, ConstructAboutInformationWithUnrecoverableErrorTest) {
TestSyncService service;
service.SetDisableReasons(
syncer::SyncService::DISABLE_REASON_UNRECOVERABLE_ERROR);
base::Value::Dict strings = ConstructAboutInformation(
IncludeSensitiveData(true), &service, std::string());
EXPECT_TRUE(strings.Find("unrecoverable_error_detected"));
}
} // namespace
} // namespace syncer::sync_ui_util