[Objc] iOS ThirdPartyTest suite for libuv dns test, add additional dns test (#28573)
* add ios libuv additional dns test * rewrite LibuvGetAddrInfoTests.m * comment address * clang formatpull/29435/head
parent
93a90e3c55
commit
bf4ab9654b
6 changed files with 180 additions and 114 deletions
@ -0,0 +1,46 @@ |
|||||||
|
/* |
||||||
|
* |
||||||
|
* Copyright 2021 gRPC authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#import <XCTest/XCTest.h> |
||||||
|
|
||||||
|
#import "test/runner.h" |
||||||
|
#import "test/task.h" |
||||||
|
|
||||||
|
// Tests in: |
||||||
|
// libuv/test/test-gethostname.c |
||||||
|
|
||||||
|
TEST_DECLARE(gethostname) |
||||||
|
|
||||||
|
#define TASK_LIST_START_LOCAL static task_entry_t TEST_TASKS[] = { |
||||||
|
TASK_LIST_START_LOCAL |
||||||
|
TEST_ENTRY(gethostname) |
||||||
|
TASK_LIST_END |
||||||
|
|
||||||
|
@interface LibuvGetHostNameTests : XCTestCase |
||||||
|
|
||||||
|
@end |
||||||
|
|
||||||
|
@implementation LibuvGetHostNameTests |
||||||
|
|
||||||
|
- (void)testGetHostNameAll { |
||||||
|
for (task_entry_t* task = TEST_TASKS; task->main; task++) { |
||||||
|
task->main(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@end |
@ -0,0 +1,50 @@ |
|||||||
|
/* |
||||||
|
* |
||||||
|
* Copyright 2021 gRPC authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#import <XCTest/XCTest.h> |
||||||
|
|
||||||
|
#import "test/runner.h" |
||||||
|
#import "test/task.h" |
||||||
|
|
||||||
|
// Tests in: |
||||||
|
// libuv/test/test-getnameinfo.c |
||||||
|
|
||||||
|
TEST_DECLARE(getnameinfo_basic_ip4) |
||||||
|
TEST_DECLARE(getnameinfo_basic_ip4_sync) |
||||||
|
TEST_DECLARE(getnameinfo_basic_ip6) |
||||||
|
|
||||||
|
#define TASK_LIST_START_LOCAL static task_entry_t TEST_TASKS[] = { |
||||||
|
TASK_LIST_START_LOCAL |
||||||
|
TEST_ENTRY(getnameinfo_basic_ip4) |
||||||
|
TEST_ENTRY(getnameinfo_basic_ip4_sync) |
||||||
|
TEST_ENTRY(getnameinfo_basic_ip6) |
||||||
|
TASK_LIST_END |
||||||
|
|
||||||
|
@interface LibuvGetNameInfoTests : XCTestCase |
||||||
|
|
||||||
|
@end |
||||||
|
|
||||||
|
@implementation LibuvGetNameInfoTests |
||||||
|
|
||||||
|
- (void)testGetHostNameAll { |
||||||
|
for (task_entry_t* task = TEST_TASKS; task->main; task++) { |
||||||
|
task->main(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@end |
@ -0,0 +1,48 @@ |
|||||||
|
/* |
||||||
|
* |
||||||
|
* Copyright 2021 gRPC authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#import <XCTest/XCTest.h> |
||||||
|
|
||||||
|
#import "test/runner.h" |
||||||
|
#import "test/task.h" |
||||||
|
|
||||||
|
// Tests in: |
||||||
|
// libuv/test/test-getsockname.c |
||||||
|
|
||||||
|
TEST_DECLARE(getsockname_tcp) |
||||||
|
TEST_DECLARE(getsockname_udp) |
||||||
|
|
||||||
|
#define TASK_LIST_START_LOCAL static task_entry_t TEST_TASKS[] = { |
||||||
|
TASK_LIST_START_LOCAL |
||||||
|
TEST_ENTRY(getsockname_tcp) |
||||||
|
// TEST_ENTRY(getsockname_udp) |
||||||
|
TASK_LIST_END |
||||||
|
|
||||||
|
@interface LibuvGetSockNameTests : XCTestCase |
||||||
|
|
||||||
|
@end |
||||||
|
|
||||||
|
@implementation LibuvGetSockNameTests |
||||||
|
|
||||||
|
- (void)testGetSockNameAll { |
||||||
|
for (task_entry_t* task = TEST_TASKS; task->main; task++) { |
||||||
|
task->main(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@end |
Loading…
Reference in new issue