2024-04-04 15:54:43 +01:00
|
|
|
/**
|
|
|
|
* IPv6Transition tests.
|
|
|
|
*
|
|
|
|
* @author jb30795
|
|
|
|
*
|
|
|
|
* @copyright Crown Copyright 2024
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
import TestRegister from "../../lib/TestRegister.mjs";
|
|
|
|
|
|
|
|
TestRegister.addTests([
|
|
|
|
{
|
|
|
|
name: "IPv6 Transition: IPv4 to IPv6",
|
|
|
|
input: "198.51.100.7",
|
|
|
|
expectedOutput: "6to4: 2002:c633:6407::/48\nIPv4 Mapped: ::ffff:c633:6407\nIPv4 Translated: ::ffff:0:c633:6407\nNat 64: 64:ff9b::c633:6407",
|
|
|
|
recipeConfig: [
|
|
|
|
{
|
|
|
|
op: "IPv6 Transition Addresses",
|
2024-08-07 21:19:13 +01:00
|
|
|
args: [true, false],
|
2024-04-04 15:54:43 +01:00
|
|
|
},
|
|
|
|
],
|
2024-09-20 10:46:09 +01:00
|
|
|
}, {
|
|
|
|
name: "IPv6 Transition: IPv4 /24 Range to IPv6",
|
|
|
|
input: "198.51.100.0/24",
|
|
|
|
expectedOutput: "6to4: 2002:c633:6400::/40\nIPv4 Mapped: ::ffff:c633:6400/120\nIPv4 Translated: ::ffff:0:c633:6400/120\nNat 64: 64:ff9b::c633:6400/120",
|
|
|
|
recipeConfig: [
|
|
|
|
{
|
|
|
|
op: "IPv6 Transition Addresses",
|
|
|
|
args: [false, false],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}, {
|
|
|
|
name: "IPv6 Transition: IPv4 to IPv6 Remove headers",
|
|
|
|
input: "198.51.100.7",
|
|
|
|
expectedOutput: "2002:c633:6407::/48\n::ffff:c633:6407\n::ffff:0:c633:6407\n64:ff9b::c633:6407",
|
|
|
|
recipeConfig: [
|
|
|
|
{
|
|
|
|
op: "IPv6 Transition Addresses",
|
|
|
|
args: [true, true],
|
|
|
|
},
|
|
|
|
],
|
2024-04-04 15:54:43 +01:00
|
|
|
}, {
|
|
|
|
name: "IPv6 Transition: IPv6 to IPv4",
|
|
|
|
input: "64:ff9b::c633:6407",
|
|
|
|
expectedOutput: "IPv4: 198.51.100.7",
|
|
|
|
recipeConfig: [
|
|
|
|
{
|
|
|
|
op: "IPv6 Transition Addresses",
|
2024-08-07 21:19:13 +01:00
|
|
|
args: [true, false],
|
2024-04-04 15:54:43 +01:00
|
|
|
},
|
|
|
|
],
|
|
|
|
}, {
|
|
|
|
name: "IPv6 Transition: MAC to EUI-64",
|
|
|
|
input: "a1:b2:c3:d4:e5:f6",
|
|
|
|
expectedOutput: "EUI-64 Interface ID: a3b2:c3ff:fed4:e5f6",
|
|
|
|
recipeConfig: [
|
|
|
|
{
|
|
|
|
op: "IPv6 Transition Addresses",
|
2024-08-07 21:19:13 +01:00
|
|
|
args: [true, false],
|
2024-04-04 15:54:43 +01:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]);
|