Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Side by Side Diff: ios/chrome/browser/geolocation/CLLocation+XGeoHeaderTest.mm

Issue 1103293002: [iOS] Upstream iOS geolocation code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #import <CoreLocation/CoreLocation.h>
6
7 #import "ios/chrome/browser/geolocation/CLLocation+XGeoHeader.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 namespace {
11
12 NSString* const kEncoded550BatterySt =
13 @"a cm9sZTogQ1VSUkVOVF9MT0NBVElPTgpwcm9kdWNlcjogREVWSUNFX0xPQ0FUSU9OCnRpbWV"
14 "zdGFtcDogMTM4OTAwMDAwMDAwMDAwMApyYWRpdXM6IDEwMDAwCmxhdGxuZyA8CiAgbGF0aXR1"
15 "ZGVfZTc6IDM3Nzk2MzIyMAogIGxvbmdpdHVkZV9lNzogLTEyMjQwMDI5MTAKPg==";
16
17 TEST(CLLocationXGeoHeaderTest, TestXGeoString) {
18 CLLocationCoordinate2D coordinate =
19 CLLocationCoordinate2DMake(37.796322, -122.400291);
20 // Picked a fixed timestamp. This one is 2014-01-06 09:20:00 +0000.
21 NSDate* timestamp = [NSDate dateWithTimeIntervalSince1970:1389000000];
22 CLLocation* location =
23 [[[CLLocation alloc] initWithCoordinate:coordinate
24 altitude:0
25 horizontalAccuracy:10
26 verticalAccuracy:100
27 course:0
28 speed:0
29 timestamp:timestamp] autorelease];
30 NSString* xGeoString = [location cr_xGeoString];
31 EXPECT_TRUE([xGeoString isEqualToString:kEncoded550BatterySt]);
32 }
33
34 } // namespace
OLDNEW
« no previous file with comments | « ios/chrome/browser/geolocation/CLLocation+XGeoHeader.mm ('k') | ios/chrome/browser/geolocation/location_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698