
* update all READMEs with notices about the name change * update changelog for 0.24 * bump crate versions to 0.24 * update version notice information * update readmes to back reference trust-dns * rename all crates to hickory counterparts * replace all Trust-DNS references in code and comments with Hickory DNS * rename all Trust-DNS references to Hickory DNS in non-code * rename all trust-dns-resolver references to hickory-resolver * rename all trust-dns-client references to hickory-client * rename all trust-dns-proto references to hickory-proto * rename all trust-dns-server references to hickory-server * rename all trust-dns-compatibility references to hickory-compatability * rename all trust-dns-integration references to hickory-integration * rename all trust-dns-util references to hickory-util * Update MIT licenses to reference Hickory DNS * update all trust-dns references to hickory-dns * update all bluejekyll github references to hickorydns org * Update name in Changelog * make sure hickory-dns logs during tests * add changelogs for recent main additions * fix references to trust-dns and hickory in architecture * update a few trust-dns references in READMEs * fixup some dangling trust_dns references * replace fka with formerly in change log * replace all hickoydns org references to hickory-dns * replace all http links with https * update logos * update hickorydns to hickory-dns for all other org references * fix Notices of Trust-DNS to Hickory in each Readme
78 lines
2.0 KiB
Rust
78 lines
2.0 KiB
Rust
// Copyright 2015-2017 Benjamin Fry <benjaminfry@me.com>
|
|
//
|
|
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
|
|
// https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
|
|
// https://opensource.org/licenses/MIT>, at your option. This file may not be
|
|
// copied, modified, or distributed except according to those terms.
|
|
|
|
#![cfg(nightly)]
|
|
#![feature(test)]
|
|
|
|
extern crate test;
|
|
|
|
use std::str::FromStr;
|
|
|
|
use test::Bencher;
|
|
|
|
use hickory_client::rr::*;
|
|
|
|
#[bench]
|
|
fn name_cmp_short(b: &mut Bencher) {
|
|
let name1 = LowerName::new(&Name::from_str("com").unwrap());
|
|
let name2 = LowerName::new(&Name::from_str("COM").unwrap());
|
|
|
|
b.iter(|| {
|
|
assert_eq!(name1, name2);
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn name_cmp_short_case(b: &mut Bencher) {
|
|
let name1 = LowerName::new(&Name::from_str("com").unwrap());
|
|
let name2 = LowerName::new(&Name::from_str("com").unwrap());
|
|
|
|
b.iter(|| {
|
|
assert_eq!(name1, name2);
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn name_cmp_medium(b: &mut Bencher) {
|
|
let name1 = LowerName::new(&Name::from_str("www.example.com").unwrap());
|
|
let name2 = LowerName::new(&Name::from_str("www.EXAMPLE.com").unwrap());
|
|
|
|
b.iter(|| {
|
|
assert_eq!(name1, name2);
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn name_cmp_medium_case(b: &mut Bencher) {
|
|
let name1 = LowerName::new(&Name::from_str("www.example.com").unwrap());
|
|
let name2 = LowerName::new(&Name::from_str("www.example.com").unwrap());
|
|
|
|
b.iter(|| {
|
|
assert_eq!(name1, name2);
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn name_cmp_long(b: &mut Bencher) {
|
|
let name1 = LowerName::new(&Name::from_str("a.crazy.really.long.example.com").unwrap());
|
|
let name2 = LowerName::new(&Name::from_str("a.crazy.really.long.EXAMPLE.com").unwrap());
|
|
|
|
b.iter(|| {
|
|
assert_eq!(name1, name2);
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn name_cmp_long_case(b: &mut Bencher) {
|
|
let name1 = LowerName::new(&Name::from_str("a.crazy.really.long.example.com").unwrap());
|
|
let name2 = LowerName::new(&Name::from_str("a.crazy.really.long.example.com").unwrap());
|
|
|
|
b.iter(|| {
|
|
assert_eq!(name1, name2);
|
|
});
|
|
}
|