blob: 215d9ac3fb560bbd1299cb3b3535672d34070ef4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <string>
#include "base/mac/scoped_nsobject.h"
#include "base/memory/scoped_ptr.h"
#include "components/prefs/testing_pref_service.h"
#include "ios/chrome/browser/geolocation/location_manager.h"
#include "ios/chrome/browser/geolocation/omnibox_geolocation_local_state.h"
#include "ios/chrome/test/ios_chrome_scoped_testing_local_state.h"
#include "ios/chrome/test/testing_application_context.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/gtest_mac.h"
#include "testing/platform_test.h"
namespace {
class OmniboxGeolocationLocalStateTest : public PlatformTest {
protected:
OmniboxGeolocationLocalStateTest() {
location_manager_.reset([[LocationManager alloc] init]);
local_state_.reset([[OmniboxGeolocationLocalState alloc]
initWithLocationManager:location_manager_]);
}
IOSChromeScopedTestingLocalState scoped_local_state_;
base::scoped_nsobject<LocationManager> location_manager_;
base::scoped_nsobject<OmniboxGeolocationLocalState> local_state_;
};
TEST_F(OmniboxGeolocationLocalStateTest, LastAuthorizationAlertVersion) {
EXPECT_TRUE([local_state_ lastAuthorizationAlertVersion].empty());
std::string expectedVersion("fakeVersion");
[local_state_ setLastAuthorizationAlertVersion:expectedVersion];
EXPECT_EQ(expectedVersion, [local_state_ lastAuthorizationAlertVersion]);
}
} // namespace
|