Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
c7f4c7bc
Commit
c7f4c7bc
authored
Feb 02, 2017
by
Thomas Van Lenten
Committed by
GitHub
Feb 02, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2654 from TeBoring/3.2.x
Cherry-pick Objc changes
parents
593e917c
e3583877
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
167 additions
and
78 deletions
+167
-78
GPBArray.h
objectivec/GPBArray.h
+21
-21
GPBDictionary.h
objectivec/GPBDictionary.h
+0
-0
GPBWellKnownTypes.h
objectivec/GPBWellKnownTypes.h
+14
-3
GPBWellKnownTypes.m
objectivec/GPBWellKnownTypes.m
+36
-14
GPBWellKnownTypesTest.m
objectivec/Tests/GPBWellKnownTypesTest.m
+96
-40
No files found.
objectivec/GPBArray.h
View file @
c7f4c7bc
...
...
@@ -96,7 +96,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* @return A newly initialized GPBInt32Array with a copy of the values.
**/
-
(
instancetype
)
initWithValues
:(
const
int32_t
[])
values
-
(
instancetype
)
initWithValues
:(
const
int32_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -161,7 +161,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values The values to add to this array.
* @param count The number of elements to add.
**/
-
(
void
)
addValues
:(
const
int32_t
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addValues
:(
const
int32_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
* Adds the values from the given array to this array.
...
...
@@ -268,7 +268,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* @return A newly initialized GPBUInt32Array with a copy of the values.
**/
-
(
instancetype
)
initWithValues
:(
const
uint32_t
[])
values
-
(
instancetype
)
initWithValues
:(
const
uint32_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -333,7 +333,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values The values to add to this array.
* @param count The number of elements to add.
**/
-
(
void
)
addValues
:(
const
uint32_t
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addValues
:(
const
uint32_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
* Adds the values from the given array to this array.
...
...
@@ -440,7 +440,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* @return A newly initialized GPBInt64Array with a copy of the values.
**/
-
(
instancetype
)
initWithValues
:(
const
int64_t
[])
values
-
(
instancetype
)
initWithValues
:(
const
int64_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -505,7 +505,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values The values to add to this array.
* @param count The number of elements to add.
**/
-
(
void
)
addValues
:(
const
int64_t
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addValues
:(
const
int64_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
* Adds the values from the given array to this array.
...
...
@@ -612,7 +612,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* @return A newly initialized GPBUInt64Array with a copy of the values.
**/
-
(
instancetype
)
initWithValues
:(
const
uint64_t
[])
values
-
(
instancetype
)
initWithValues
:(
const
uint64_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -677,7 +677,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values The values to add to this array.
* @param count The number of elements to add.
**/
-
(
void
)
addValues
:(
const
uint64_t
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addValues
:(
const
uint64_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
* Adds the values from the given array to this array.
...
...
@@ -784,7 +784,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* @return A newly initialized GPBFloatArray with a copy of the values.
**/
-
(
instancetype
)
initWithValues
:(
const
float
[])
values
-
(
instancetype
)
initWithValues
:(
const
float
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -849,7 +849,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values The values to add to this array.
* @param count The number of elements to add.
**/
-
(
void
)
addValues
:(
const
float
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addValues
:(
const
float
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
* Adds the values from the given array to this array.
...
...
@@ -956,7 +956,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* @return A newly initialized GPBDoubleArray with a copy of the values.
**/
-
(
instancetype
)
initWithValues
:(
const
double
[])
values
-
(
instancetype
)
initWithValues
:(
const
double
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -1021,7 +1021,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values The values to add to this array.
* @param count The number of elements to add.
**/
-
(
void
)
addValues
:(
const
double
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addValues
:(
const
double
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
* Adds the values from the given array to this array.
...
...
@@ -1128,7 +1128,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* @return A newly initialized GPBBoolArray with a copy of the values.
**/
-
(
instancetype
)
initWithValues
:(
const
BOOL
[])
values
-
(
instancetype
)
initWithValues
:(
const
BOOL
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -1193,7 +1193,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values The values to add to this array.
* @param count The number of elements to add.
**/
-
(
void
)
addValues
:(
const
BOOL
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addValues
:(
const
BOOL
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
* Adds the values from the given array to this array.
...
...
@@ -1325,7 +1325,7 @@ NS_ASSUME_NONNULL_BEGIN
* @return A newly initialized GPBEnumArray with a copy of the values.
**/
-
(
instancetype
)
initWithValidationFunction
:(
nullable
GPBEnumValidationFunc
)
func
rawValues
:(
const
int32_t
[])
values
rawValues
:(
const
int32_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -1435,7 +1435,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values The values to add to this array.
* @param count The number of elements to add.
**/
-
(
void
)
addValues
:(
const
int32_t
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addValues
:(
const
int32_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
...
...
@@ -1486,7 +1486,7 @@ NS_ASSUME_NONNULL_BEGIN
* @param values Array containing the raw enum values to add to this array.
* @param count The number of raw values to add.
**/
-
(
void
)
addRawValues
:(
const
int32_t
[])
values
count
:(
NSUInteger
)
count
;
-
(
void
)
addRawValues
:(
const
int32_t
[
__nullable
])
values
count
:(
NSUInteger
)
count
;
/**
* Inserts a raw enum value at the given index.
...
...
@@ -1613,7 +1613,7 @@ NS_ASSUME_NONNULL_END
//% *
//% * @return A newly initialized GPB##NAME##Array with a copy of the values.
//% **/
//%- (instancetype)initWithValues:(const TYPE [])values
//%- (instancetype)initWithValues:(const TYPE [
__nullable
])values
//% count:(NSUInteger)count;
//%
//%/**
...
...
@@ -1730,7 +1730,7 @@ NS_ASSUME_NONNULL_END
//% * @return A newly initialized GPB##NAME##Array with a copy of the values.
//% **/
//%- (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
//% rawValues:(const TYPE [])values
//% rawValues:(const TYPE [
__nullable
])values
//% count:(NSUInteger)count;
//%
//%/**
...
...
@@ -1849,7 +1849,7 @@ NS_ASSUME_NONNULL_END
//% * @param values The values to add to this array.
//% * @param count The number of elements to add.
//% **/
//%- (void)addValues:(const TYPE [])values count:(NSUInteger)count;
//%- (void)addValues:(const TYPE [
__nullable
])values count:(NSUInteger)count;
//%
//%ARRAY_EXTRA_MUTABLE_METHODS1_##HELPER_NAME(NAME, TYPE)
//%/**
...
...
@@ -1939,7 +1939,7 @@ NS_ASSUME_NONNULL_END
//% * @param values Array containing the raw enum values to add to this array.
//% * @param count The number of raw values to add.
//% **/
//%- (void)addRawValues:(const TYPE [])values count:(NSUInteger)count;
//%- (void)addRawValues:(const TYPE [
__nullable
])values count:(NSUInteger)count;
//%
//%/**
//% * Inserts a raw enum value at the given index.
...
...
objectivec/GPBDictionary.h
View file @
c7f4c7bc
This diff is collapsed.
Click to expand it.
objectivec/GPBWellKnownTypes.h
View file @
c7f4c7bc
...
...
@@ -112,16 +112,27 @@ typedef NS_ENUM(NSInteger, GPBWellKnownTypesErrorCode) {
* @note: Not all second/nanos combinations can be represented in a
* NSTimeInterval, so getting this could be a lossy transform.
**/
@property
(
nonatomic
,
readwrite
)
NSTimeInterval
timeInterval
Since1970
;
@property
(
nonatomic
,
readwrite
)
NSTimeInterval
timeInterval
;
/**
* Initializes a GPBDuration with the given NSTimeInterval.
*
* @param timeInterval
Since1970
Time interval to configure the GPBDuration with.
* @param timeInterval Time interval to configure the GPBDuration with.
*
* @return A newly initialized GPBDuration.
**/
-
(
instancetype
)
initWithTimeIntervalSince1970
:(
NSTimeInterval
)
timeIntervalSince1970
;
-
(
instancetype
)
initWithTimeInterval
:(
NSTimeInterval
)
timeInterval
;
// These next two methods are deprecated because GBPDuration has no need of a
// "base" time. The older methods were about symmetry with GBPTimestamp, but
// the unix epoch usage is too confusing.
/** Deprecated, use timeInterval instead. */
@property
(
nonatomic
,
readwrite
)
NSTimeInterval
timeIntervalSince1970
__attribute__
((
deprecated
(
"Use timeInterval"
)));
/** Deprecated, use initWithTimeInterval: instead. */
-
(
instancetype
)
initWithTimeIntervalSince1970
:(
NSTimeInterval
)
timeIntervalSince1970
__attribute__
((
deprecated
(
"Use initWithTimeInterval:"
)));
@end
...
...
objectivec/GPBWellKnownTypes.m
View file @
c7f4c7bc
...
...
@@ -41,15 +41,25 @@ NSString *const GPBWellKnownTypesErrorDomain =
static
NSString
*
kTypePrefixGoogleApisCom
=
@"type.googleapis.com/"
;
static
NSTimeInterval
TimeInterval
Since1970
FromSecondsAndNanos
(
int64_t
seconds
,
static
NSTimeInterval
TimeIntervalFromSecondsAndNanos
(
int64_t
seconds
,
int32_t
nanos
)
{
return
seconds
+
(
NSTimeInterval
)
nanos
/
1e9
;
}
static
int32_t
SecondsAndNanosFromTimeIntervalSince1970
(
NSTimeInterval
time
,
int64_t
*
outSeconds
)
{
static
int32_t
SecondsAndNanosFromTimeInterval
(
NSTimeInterval
time
,
int64_t
*
outSeconds
,
BOOL
nanosMustBePositive
)
{
NSTimeInterval
seconds
;
NSTimeInterval
nanos
=
modf
(
time
,
&
seconds
);
if
(
nanosMustBePositive
&&
(
nanos
<
0
))
{
// Per Timestamp.proto, nanos is non-negative and "Negative second values with
// fractions must still have non-negative nanos values that count forward in
// time. Must be from 0 to 999,999,999 inclusive."
--
seconds
;
nanos
=
1
.
0
+
nanos
;
}
nanos
*=
1e9
;
*
outSeconds
=
(
int64_t
)
seconds
;
return
(
int32_t
)
nanos
;
...
...
@@ -88,8 +98,8 @@ static NSString *ParseTypeFromURL(NSString *typeURLString) {
-
(
instancetype
)
initWithTimeIntervalSince1970
:(
NSTimeInterval
)
timeIntervalSince1970
{
if
((
self
=
[
super
init
]))
{
int64_t
seconds
;
int32_t
nanos
=
SecondsAndNanosFromTimeInterval
Since1970
(
timeIntervalSince1970
,
&
seconds
);
int32_t
nanos
=
SecondsAndNanosFromTimeInterval
(
timeIntervalSince1970
,
&
seconds
,
YES
);
self
.
seconds
=
seconds
;
self
.
nanos
=
nanos
;
}
...
...
@@ -105,13 +115,13 @@ static NSString *ParseTypeFromURL(NSString *typeURLString) {
}
-
(
NSTimeInterval
)
timeIntervalSince1970
{
return
TimeInterval
Since1970
FromSecondsAndNanos
(
self
.
seconds
,
self
.
nanos
);
return
TimeIntervalFromSecondsAndNanos
(
self
.
seconds
,
self
.
nanos
);
}
-
(
void
)
setTimeIntervalSince1970
:
(
NSTimeInterval
)
timeIntervalSince1970
{
int64_t
seconds
;
int32_t
nanos
=
SecondsAndNanosFromTimeInterval
Since1970
(
timeIntervalSince1970
,
&
seconds
);
SecondsAndNanosFromTimeInterval
(
timeIntervalSince1970
,
&
seconds
,
YES
);
self
.
seconds
=
seconds
;
self
.
nanos
=
nanos
;
}
...
...
@@ -122,29 +132,41 @@ static NSString *ParseTypeFromURL(NSString *typeURLString) {
@implementation
GPBDuration
(
GBPWellKnownTypes
)
-
(
instancetype
)
initWithTimeInterval
Since1970
:(
NSTimeInterval
)
timeIntervalSince1970
{
-
(
instancetype
)
initWithTimeInterval
:(
NSTimeInterval
)
timeInterval
{
if
((
self
=
[
super
init
]))
{
int64_t
seconds
;
int32_t
nanos
=
SecondsAndNanosFromTimeInterval
Since1970
(
timeInterval
Since1970
,
&
seconds
);
int32_t
nanos
=
SecondsAndNanosFromTimeInterval
(
timeInterval
,
&
seconds
,
NO
);
self
.
seconds
=
seconds
;
self
.
nanos
=
nanos
;
}
return
self
;
}
-
(
NSTimeInterval
)
timeIntervalSince1970
{
return
TimeIntervalSince1970FromSecondsAndNanos
(
self
.
seconds
,
self
.
nanos
)
;
-
(
instancetype
)
initWithTimeIntervalSince1970
:(
NSTimeInterval
)
timeIntervalSince1970
{
return
[
self
initWithTimeInterval
:
timeIntervalSince1970
]
;
}
-
(
void
)
setTimeIntervalSince1970
:
(
NSTimeInterval
)
timeIntervalSince1970
{
-
(
NSTimeInterval
)
timeInterval
{
return
TimeIntervalFromSecondsAndNanos
(
self
.
seconds
,
self
.
nanos
);
}
-
(
void
)
setTimeInterval
:
(
NSTimeInterval
)
timeInterval
{
int64_t
seconds
;
int32_t
nanos
=
SecondsAndNanosFromTimeInterval
Since1970
(
timeIntervalSince1970
,
&
seconds
);
SecondsAndNanosFromTimeInterval
(
timeInterval
,
&
seconds
,
NO
);
self
.
seconds
=
seconds
;
self
.
nanos
=
nanos
;
}
-
(
NSTimeInterval
)
timeIntervalSince1970
{
return
self
.
timeInterval
;
}
-
(
void
)
setTimeIntervalSince1970
:
(
NSTimeInterval
)
timeIntervalSince1970
{
self
.
timeInterval
=
timeIntervalSince1970
;
}
@end
#pragma mark - GPBAny
...
...
objectivec/Tests/GPBWellKnownTypesTest.m
View file @
c7f4c7bc
...
...
@@ -32,11 +32,9 @@
#import <XCTest/XCTest.h>
#import "GPBTestUtilities.h"
#import "google/protobuf/AnyTest.pbobjc.h"
// A basically random interval into the future for testing with.
static
const
NSTimeInterval
kFutureOffsetInterval
=
15000
;
// Nanosecond time accuracy
static
const
NSTimeInterval
kTimeAccuracy
=
1e-9
;
...
...
@@ -46,59 +44,117 @@ static const NSTimeInterval kTimeAccuracy = 1e-9;
@implementation
WellKnownTypesTest
-
(
void
)
testTimeStamp
{
// Test Creation.
NSDate
*
date
=
[
NSDate
date
];
// Test negative and positive values.
NSTimeInterval
values
[]
=
{
-
428027599
.
483999967
,
-
1234567
.
0
,
-
0
.
5
,
0
,
0
.
75
,
54321
.
0
,
2468086
,
483999967
};
for
(
size_t
i
=
0
;
i
<
GPBARRAYSIZE
(
values
);
++
i
)
{
NSTimeInterval
value
=
values
[
i
];
// Test Creation - date.
NSDate
*
date
=
[
NSDate
dateWithTimeIntervalSince1970
:
value
];
GPBTimestamp
*
timeStamp
=
[[
GPBTimestamp
alloc
]
initWithDate
:
date
];
NSDate
*
timeStampDate
=
timeStamp
.
date
;
XCTAssertGreaterThanOrEqual
(
timeStamp
.
nanos
,
0
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
XCTAssertLessThan
(
timeStamp
.
nanos
,
1e9
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
// Comparing timeIntervals instead of directly comparing dates because date
// equality requires the time intervals to be exactly the same, and the
// timeintervals go through a bit of floating point error as they are
// converted back and forth from the internal representation.
XCTAssertEqualWithAccuracy
(
date
.
timeIntervalSince1970
,
timeStampDate
.
timeIntervalSince1970
,
kTimeAccuracy
);
NSTimeInterval
time
=
[
date
timeIntervalSince1970
];
GPBTimestamp
*
timeStamp2
=
[[
GPBTimestamp
alloc
]
initWithTimeIntervalSince1970
:
time
];
NSTimeInterval
durationTime
=
timeStamp2
.
timeIntervalSince1970
;
XCTAssertEqualWithAccuracy
(
time
,
durationTime
,
kTimeAccuracy
);
XCTAssertEqualWithAccuracy
(
value
,
timeStamp
.
date
.
timeIntervalSince1970
,
kTimeAccuracy
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
[
timeStamp
release
];
// Test Mutation.
date
=
[
NSDate
dateWithTimeIntervalSinceNow
:
kFutureOffsetInterval
];
timeStamp2
.
date
=
date
;
timeStampDate
=
timeStamp2
.
date
;
XCTAssertEqualWithAccuracy
(
date
.
timeIntervalSince1970
,
timeStampDate
.
timeIntervalSince1970
,
kTimeAccuracy
);
time
=
date
.
timeIntervalSince1970
;
timeStamp2
.
timeIntervalSince1970
=
time
;
durationTime
=
timeStamp2
.
timeIntervalSince1970
;
XCTAssertEqualWithAccuracy
(
time
,
durationTime
,
kTimeAccuracy
);
[
timeStamp2
release
];
// Test Creation - timeIntervalSince1970.
timeStamp
=
[[
GPBTimestamp
alloc
]
initWithTimeIntervalSince1970
:
value
];
XCTAssertGreaterThanOrEqual
(
timeStamp
.
nanos
,
0
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
XCTAssertLessThan
(
timeStamp
.
nanos
,
1e9
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
XCTAssertEqualWithAccuracy
(
value
,
timeStamp
.
timeIntervalSince1970
,
kTimeAccuracy
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
[
timeStamp
release
];
// Test Mutation - date.
timeStamp
=
[[
GPBTimestamp
alloc
]
init
];
timeStamp
.
date
=
date
;
XCTAssertGreaterThanOrEqual
(
timeStamp
.
nanos
,
0
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
XCTAssertLessThan
(
timeStamp
.
nanos
,
1e9
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
XCTAssertEqualWithAccuracy
(
value
,
timeStamp
.
date
.
timeIntervalSince1970
,
kTimeAccuracy
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
[
timeStamp
release
];
// Test Mutation - timeIntervalSince1970.
timeStamp
=
[[
GPBTimestamp
alloc
]
init
];
timeStamp
.
timeIntervalSince1970
=
value
;
XCTAssertGreaterThanOrEqual
(
timeStamp
.
nanos
,
0
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
XCTAssertLessThan
(
timeStamp
.
nanos
,
1e9
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
XCTAssertEqualWithAccuracy
(
value
,
timeStamp
.
date
.
timeIntervalSince1970
,
kTimeAccuracy
,
@"Offset %f - Date: %@"
,
(
double
)
value
,
date
);
[
timeStamp
release
];
}
}
-
(
void
)
testDuration
{
// Test negative and positive values.
NSTimeInterval
values
[]
=
{
-
1000
.
0001
,
-
500
.
0
,
-
0
.
5
,
0
,
0
.
75
,
1000
.
0
,
2000
.
0002
};
for
(
size_t
i
=
0
;
i
<
GPBARRAYSIZE
(
values
);
++
i
)
{
NSTimeInterval
value
=
values
[
i
];
// Test Creation.
NSTimeInterval
time
=
[[
NSDate
date
]
timeIntervalSince1970
];
GPBDuration
*
duration
=
[[
GPBDuration
alloc
]
initWithTimeIntervalSince1970
:
time
];
NSTimeInterval
durationTime
=
duration
.
timeIntervalSince1970
;
XCTAssertEqualWithAccuracy
(
time
,
durationTime
,
kTimeAccuracy
);
[[
GPBDuration
alloc
]
initWithTimeInterval
:
value
];
XCTAssertEqualWithAccuracy
(
value
,
duration
.
timeInterval
,
kTimeAccuracy
,
@"For interval %f"
,
(
double
)
value
);
if
(
value
>
0
)
{
XCTAssertGreaterThanOrEqual
(
duration
.
seconds
,
0
,
@"For interval %f"
,
(
double
)
value
);
XCTAssertGreaterThanOrEqual
(
duration
.
nanos
,
0
,
@"For interval %f"
,
(
double
)
value
);
}
else
{
XCTAssertLessThanOrEqual
(
duration
.
seconds
,
0
,
@"For interval %f"
,
(
double
)
value
);
XCTAssertLessThanOrEqual
(
duration
.
nanos
,
0
,
@"For interval %f"
,
(
double
)
value
);
}
[
duration
release
];
// Test Mutation.
GPBDuration
*
duration2
=
[[
GPBDuration
alloc
]
initWithTimeIntervalSince1970
:
time
];
NSDate
*
date
=
[
NSDate
dateWithTimeIntervalSinceNow
:
kFutureOffsetInterval
];
time
=
date
.
timeIntervalSince1970
;
duration2
.
timeIntervalSince1970
=
time
;
durationTime
=
duration2
.
timeIntervalSince1970
;
XCTAssertEqualWithAccuracy
(
time
,
durationTime
,
kTimeAccuracy
);
[
duration2
release
];
duration
=
[[
GPBDuration
alloc
]
init
];
duration
.
timeInterval
=
value
;
XCTAssertEqualWithAccuracy
(
value
,
duration
.
timeInterval
,
kTimeAccuracy
,
@"For interval %f"
,
(
double
)
value
);
if
(
value
>
0
)
{
XCTAssertGreaterThanOrEqual
(
duration
.
seconds
,
0
,
@"For interval %f"
,
(
double
)
value
);
XCTAssertGreaterThanOrEqual
(
duration
.
nanos
,
0
,
@"For interval %f"
,
(
double
)
value
);
}
else
{
XCTAssertLessThanOrEqual
(
duration
.
seconds
,
0
,
@"For interval %f"
,
(
double
)
value
);
XCTAssertLessThanOrEqual
(
duration
.
nanos
,
0
,
@"For interval %f"
,
(
double
)
value
);
}
[
duration
release
];
}
}
-
(
void
)
testAnyHelpers
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment