mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 14:11:02 +01:00
35 lines
812 B
JavaScript
35 lines
812 B
JavaScript
/**
|
|
* DateTime tests.
|
|
*
|
|
* @author bwhitn [brian.m.whitney@outlook.com]
|
|
*
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
import TestRegister from "../../TestRegister.js";
|
|
|
|
TestRegister.addTests([
|
|
{
|
|
name: "Filetime to Unix",
|
|
input: "129207366395297693",
|
|
expectedOutput: "1276263039529769300",
|
|
recipeConfig: [
|
|
{
|
|
op: "Windows Filetime to UNIX Timestamp",
|
|
args: ["Nanoseconds (ns)"],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: "Unix to Filetime",
|
|
input: "1276263039529769300",
|
|
expectedOutput: "129207366395297693",
|
|
recipeConfig: [
|
|
{
|
|
op: "UNIX Timestamp to Windows Filetime",
|
|
args: ["Nanoseconds (ns)"],
|
|
},
|
|
],
|
|
},
|
|
]);
|