1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
|
use super::super::*;
use crate::ReadError::UnexpectedEndOfSlice;
use crate::ip_number::*;
use std::io::Cursor;
pub mod header {
use super::*;
#[test]
fn from_slice() {
let auth_header = IpAuthenticationHeader::new(
UDP,
0,
0,
&[]
).unwrap();
let buffer = {
let mut buffer = Vec::with_capacity(auth_header.header_len());
auth_header.write(&mut buffer).unwrap();
buffer.push(1);
buffer.push(2);
buffer
};
// no auth header
{
let (header, next, rest) = Ipv4Extensions::from_slice(
TCP,
&buffer
).unwrap();
assert!(header.auth.is_none());
assert_eq!(TCP, next);
assert_eq!(rest, &buffer);
}
// with auth header
{
let (actual, next, rest) = Ipv4Extensions::from_slice(
AUTH,
&buffer
).unwrap();
assert_eq!(actual.auth.unwrap(), auth_header);
assert_eq!(UDP, next);
assert_eq!(rest, &buffer[auth_header.header_len()..]);
}
// too small
{
let err = Ipv4Extensions::from_slice(
AUTH,
&buffer[..auth_header.header_len() - 1]
).unwrap_err();
const AUTH_HEADER_LEN: usize = 12;
assert_matches!(
err,
UnexpectedEndOfSlice(AUTH_HEADER_LEN)
);
}
}
proptest! {
#[test]
fn read(auth in ip_authentication_any()) {
// None
{
let mut cursor = Cursor::new(&[]);
let (actual, next) = Ipv4Extensions::read(&mut cursor, UDP).unwrap();
assert_eq!(next, UDP);
assert_eq!(
actual,
Ipv4Extensions{
auth: None,
}
);
}
// Some sucessfull
{
let buffer = {
let mut buffer = Vec::with_capacity(auth.header_len());
auth.write(&mut buffer).unwrap();
buffer.push(1);
buffer
};
let mut cursor = Cursor::new(&buffer);
let (actual, next) = Ipv4Extensions::read(&mut cursor, AUTH).unwrap();
assert_eq!(auth.header_len(), cursor.position() as usize);
assert_eq!(next, auth.next_header);
assert_eq!(
actual,
Ipv4Extensions{
auth: Some(auth.clone()),
}
);
}
// Some error
{
let mut cursor = Cursor::new(&[]);
let err = Ipv4Extensions::read(&mut cursor, AUTH).unwrap_err();
assert_matches!(
err,
ReadError::IoError(_)
);
}
}
}
#[test]
fn write() {
// None
{
let mut buffer = Vec::new();
Ipv4Extensions{
auth: None,
}.write(&mut buffer, UDP).unwrap();
assert_eq!(0, buffer.len());
}
// Some
let auth_header = IpAuthenticationHeader::new(
UDP,
0,
0,
&[]
).unwrap();
{
let mut buffer = Vec::with_capacity(auth_header.header_len());
Ipv4Extensions{
auth: Some(auth_header.clone()),
}.write(&mut buffer, AUTH).unwrap();
let (read_header, _) = IpAuthenticationHeader::from_slice(&buffer).unwrap();
assert_eq!(auth_header, read_header);
}
// Some bad start number
{
let mut buffer = Vec::new();
let err = Ipv4Extensions{
auth: Some(auth_header.clone()),
}.write(&mut buffer, UDP).unwrap_err();
assert_matches!(
err,
WriteError::ValueError(
ValueError::Ipv4ExtensionNotReferenced(
IpNumber::AuthenticationHeader
)
)
);
}
// Some: Write error
{
let mut writer = TestWriter::with_max_size(
auth_header.header_len() - 1
);
let err = Ipv4Extensions{
auth: Some(auth_header.clone()),
}.write(&mut writer, AUTH).unwrap_err();
assert_eq!(
std::io::ErrorKind::UnexpectedEof,
err.io_error().unwrap().kind()
);
}
}
#[test]
fn header_len() {
// None
assert_eq!(
0,
Ipv4Extensions{
auth: None,
}.header_len()
);
// Some
{
let auth = IpAuthenticationHeader::new(
UDP,
0,
0,
&[]
).unwrap();
assert_eq!(
auth.header_len(),
Ipv4Extensions{
auth: Some(auth),
}.header_len()
);
}
// Some with paylaod
{
let auth = IpAuthenticationHeader::new(
UDP,
0,
0,
&[ 1, 2, 3, 4 ]
).unwrap();
assert_eq!(
auth.header_len(),
Ipv4Extensions{
auth: Some(auth),
}.header_len()
);
}
}
#[test]
fn set_next_headers() {
// None
{
let mut exts = Ipv4Extensions{
auth: None,
};
assert_eq!(UDP, exts.set_next_headers(UDP));
}
// Some
{
let mut exts = Ipv4Extensions{
auth: Some(
IpAuthenticationHeader::new(
TCP,
0,
0,
&[]
).unwrap()
),
};
assert_eq!(TCP, exts.auth.as_ref().unwrap().next_header);
// change from TCP to UDP
let re = exts.set_next_headers(UDP);
assert_eq!(AUTH, re);
assert_eq!(UDP, exts.auth.as_ref().unwrap().next_header);
}
}
#[test]
fn next_header() {
// None
{
let exts = Ipv4Extensions{
auth: None,
};
assert_eq!(UDP, exts.next_header(UDP).unwrap());
}
// Some
{
let exts = Ipv4Extensions{
auth: Some(
IpAuthenticationHeader::new(
TCP,
0,
0,
&[]
).unwrap()
),
};
// auth referenced
assert_eq!(TCP, exts.next_header(AUTH).unwrap());
// auth not referenced (error)
assert_eq!(
ValueError::Ipv4ExtensionNotReferenced(
IpNumber::AuthenticationHeader
),
exts.next_header(TCP).unwrap_err()
);
}
}
#[test]
fn is_empty() {
// empty
assert!(
Ipv4Extensions{
auth: None,
}.is_empty()
);
// auth
assert_eq!(
false,
Ipv4Extensions{
auth: Some(IpAuthenticationHeader::new(ip_number::UDP, 0, 0, &[]).unwrap()),
}.is_empty()
);
}
proptest! {
#[test]
fn debug(auth in ip_authentication_any()) {
// None
assert_eq!(
&format!("Ipv4Extensions {{ auth: {:?} }}", Option::<IpAuthenticationHeader>::None),
&format!(
"{:?}",
Ipv4Extensions {
auth: None,
}
)
);
// Some
assert_eq!(
&format!("Ipv4Extensions {{ auth: {:?} }}", Some(auth.clone())),
&format!(
"{:?}",
Ipv4Extensions {
auth: Some(auth.clone()),
}
)
);
}
}
proptest! {
#[test]
fn clone_eq(auth in ip_authentication_any()) {
// None
{
let header = Ipv4Extensions{
auth: None,
};
assert_eq!(
header.clone(),
Ipv4Extensions{
auth: None,
}
);
}
// Some
{
let header = Ipv4Extensions{
auth: Some(auth.clone()),
};
assert_eq!(
header.clone(),
Ipv4Extensions{
auth: Some(auth.clone()),
}
);
}
}
}
} // mod header
mod slice {
use super::*;
proptest! {
#[test]
fn from_slice(auth in ip_authentication_any()) {
// None
{
let buffer = [1,2,3,4];
let (slice, next, rest) = Ipv4ExtensionsSlice::from_slice(UDP, &buffer).unwrap();
assert_eq!(
slice,
Ipv4ExtensionsSlice{
auth: None,
}
);
assert_eq!(next, UDP);
assert_eq!(rest, &buffer);
}
// Some
{
let buffer = {
let mut buffer = Vec::with_capacity(auth.header_len());
auth.write(&mut buffer).unwrap();
// add some data to check the returned rest slice is correct
// and not just nothing
buffer.push(1);
buffer
};
let (slice, next, rest) = Ipv4ExtensionsSlice::from_slice(AUTH, &buffer).unwrap();
assert_eq!(
slice,
Ipv4ExtensionsSlice{
auth: Some(
IpAuthenticationHeaderSlice::from_slice(&buffer).unwrap()
),
}
);
assert_eq!(next, auth.next_header);
assert_eq!(rest, &buffer[auth.header_len()..]);
}
// Error unexpected end of slice
{
let err = Ipv4ExtensionsSlice::from_slice(AUTH, &[]).unwrap_err();
const AUTH_HEADER_LEN: usize = 12;
assert_matches!(
err,
UnexpectedEndOfSlice(AUTH_HEADER_LEN)
);
}
}
}
proptest! {
#[test]
fn to_header(auth in ip_authentication_any()) {
// None
assert_eq!(
Ipv4ExtensionsSlice{
auth: None,
}.to_header(),
Ipv4Extensions{
auth: None,
}
);
// Some
{
let buffer = {
let mut buffer = Vec::with_capacity(auth.header_len());
auth.write(&mut buffer).unwrap();
buffer
};
let slice = Ipv4ExtensionsSlice{
auth: Some(
IpAuthenticationHeaderSlice::from_slice(&buffer).unwrap()
),
};
assert_eq!(
slice.to_header(),
Ipv4Extensions{
auth: Some(auth.clone()),
}
);
}
}
}
#[test]
fn is_empty() {
// empty
assert!(
Ipv4ExtensionsSlice{
auth: None,
}.is_empty()
);
// auth
{
let buffer = {
let auth = IpAuthenticationHeader::new(ip_number::UDP, 0, 0, &[]).unwrap();
let mut buffer = Vec::with_capacity(auth.header_len());
auth.write(&mut buffer).unwrap();
buffer
};
assert_eq!(
false,
Ipv4ExtensionsSlice{
auth: Some(IpAuthenticationHeaderSlice::from_slice(&buffer).unwrap()),
}.is_empty()
);
}
}
proptest! {
#[test]
fn debug(auth in ip_authentication_any()) {
// None
assert_eq!(
&format!("Ipv4ExtensionsSlice {{ auth: {:?} }}", Option::<IpAuthenticationHeader>::None),
&format!(
"{:?}",
Ipv4ExtensionsSlice {
auth: None,
}
)
);
// Some
let buffer = {
let mut buffer = Vec::with_capacity(auth.header_len());
auth.write(&mut buffer).unwrap();
buffer
};
let auth_slice = IpAuthenticationHeaderSlice::from_slice(&buffer).unwrap();
assert_eq!(
&format!("Ipv4ExtensionsSlice {{ auth: {:?} }}", Some(auth_slice.clone())),
&format!(
"{:?}",
Ipv4ExtensionsSlice {
auth: Some(auth_slice.clone()),
}
)
);
}
}
proptest! {
#[test]
fn clone_eq(auth in ip_authentication_any()) {
// None
{
let header = Ipv4ExtensionsSlice{
auth: None,
};
assert_eq!(
header.clone(),
Ipv4ExtensionsSlice{
auth: None,
}
);
}
// Some
{
let buffer = {
let mut buffer = Vec::with_capacity(auth.header_len());
auth.write(&mut buffer).unwrap();
buffer
};
let auth_slice = IpAuthenticationHeaderSlice::from_slice(&buffer).unwrap();
let slice = Ipv4ExtensionsSlice {
auth: Some(auth_slice.clone()),
};
assert_eq!(
slice.clone(),
Ipv4ExtensionsSlice{
auth: Some(auth_slice.clone()),
}
);
}
}
}
}
|