Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin J. Thompson
Tor
Commits
595bd929
Commit
595bd929
authored
9 years ago
by
rl1987
Browse files
Options
Downloads
Patches
Plain Diff
First test case for dns_resolve_impl().
parent
882d33a8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/test_dns.c
+134
-0
134 additions, 0 deletions
src/test/test_dns.c
with
134 additions
and
0 deletions
src/test/test_dns.c
+
134
−
0
View file @
595bd929
...
...
@@ -321,10 +321,144 @@ NS(test_main)(void *arg)
#undef NS_SUBMODULE
#define NS_SUBMODULE ASPECT(resolve_impl, addr_is_ip_no_need_to_resolve)
/*
* Given that <b>exitconn->base_.address</b> is IP address string, we
* want dns_resolve_impl() to parse it and store in
* <b>exitconn->base_.addr</b>. We expect dns_resolve_impl to return 1.
* Lastly, we want it to set the TTL value to default one for DNS queries.
*/
static
void
NS
(
test_main
)(
void
*
arg
)
{
int
retval
;
int
made_pending
;
const
tor_addr_t
*
resolved_addr
;
tor_addr_t
addr_to_compare
;
tor_addr_parse
(
&
addr_to_compare
,
"8.8.8.8"
);
or_circuit_t
*
on_circ
=
tor_malloc_zero
(
sizeof
(
or_circuit_t
));
edge_connection_t
*
exitconn
=
tor_malloc_zero
(
sizeof
(
edge_connection_t
));
TO_CONN
(
exitconn
)
->
type
=
CONN_TYPE_EXIT
;
TO_CONN
(
exitconn
)
->
magic
=
EDGE_CONNECTION_MAGIC
;
TO_CONN
(
exitconn
)
->
purpose
=
EXIT_PURPOSE_RESOLVE
;
TO_CONN
(
exitconn
)
->
state
=
EXIT_CONN_STATE_RESOLVING
;
exitconn
->
base_
.
s
=
TOR_INVALID_SOCKET
;
TO_CONN
(
exitconn
)
->
address
=
tor_strdup
(
"8.8.8.8"
);
retval
=
dns_resolve_impl
(
exitconn
,
1
,
on_circ
,
NULL
,
&
made_pending
,
NULL
);
resolved_addr
=
&
(
exitconn
->
base_
.
addr
);
tt_int_op
(
retval
,
==
,
1
);
tt_assert
(
tor_addr_compare
(
resolved_addr
,
(
const
tor_addr_t
*
)
&
addr_to_compare
,
CMP_EXACT
)
==
0
);
tt_int_op
(
exitconn
->
address_ttl
,
==
,
DEFAULT_DNS_TTL
);
done:
tor_free
(
on_circ
);
tor_free
(
TO_CONN
(
exitconn
)
->
address
);
tor_free
(
exitconn
);
return
;
}
#undef NS_SUBMODULE
#define NS_SUBMODULE ASPECT(resolve_impl, non_exit)
static
void
NS
(
test_main
)(
void
*
arg
)
{
tt_skip
();
done:
return
;
}
#undef NS_SUBMODULE
#define NS_SUBMODULE ASPECT(resolve_impl, addr_is_invalid_dest)
static
void
NS
(
test_main
)(
void
*
arg
)
{
tt_skip
();
done:
return
;
}
#undef NS_SUBMODULE
#define NS_SUBMODULE ASPECT(resolve_impl, malformed_ptr)
static
void
NS
(
test_main
)(
void
*
arg
)
{
tt_skip
();
done:
return
;
}
#undef NS_SUBMODULE
#define NS_SUBMODULE ASPECT(resolve_impl, cache_hit_pending)
static
void
NS
(
test_main
)(
void
*
arg
)
{
tt_skip
();
done:
return
;
}
#undef NS_SUBMODULE
#define NS_SUBMODULE ASPECT(resolve_impl, cache_hit_cached)
static
void
NS
(
test_main
)(
void
*
arg
)
{
tt_skip
();
done:
return
;
}
#undef NS_SUBMODULE
#define NS_SUBMODULE ASPECT(resolve_impl, cache_miss)
static
void
NS
(
test_main
)(
void
*
arg
)
{
tt_skip
();
done:
return
;
}
#undef NS_SUBMODULE
struct
testcase_t
dns_tests
[]
=
{
TEST_CASE
(
clip_ttl
),
TEST_CASE
(
expiry_ttl
),
TEST_CASE
(
resolve
),
TEST_CASE_ASPECT
(
resolve_impl
,
addr_is_ip_no_need_to_resolve
),
TEST_CASE_ASPECT
(
resolve_impl
,
non_exit
),
TEST_CASE_ASPECT
(
resolve_impl
,
addr_is_invalid_dest
),
TEST_CASE_ASPECT
(
resolve_impl
,
malformed_ptr
),
TEST_CASE_ASPECT
(
resolve_impl
,
cache_hit_pending
),
TEST_CASE_ASPECT
(
resolve_impl
,
cache_hit_cached
),
TEST_CASE_ASPECT
(
resolve_impl
,
cache_miss
),
END_OF_TESTCASES
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment