view client/tests/unit/session/session.spec.js @ 5590:826e67e959c9 surveysperbottleneckid

For BN Overview display id for all doubles
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 05 Apr 2022 13:02:13 +0200
parents 0c5cbbafbd94
children
line wrap: on
line source

/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 */
import {
  sessionStillActive,
  toMillisFromString
} from "../../../src/application/lib/session";

test("No session counts as expired session", () => {
  expect(sessionStillActive(null)).toBe(false);
});

test("Session expired", () => {
  const expired = Date.now() - 60000;
  expect(sessionStillActive(expired)).toBe(false);
});

test("Session alive", () => {
  const active = Date.now() + 60000;
  expect(sessionStillActive(active)).toBe(true);
});

test("Session alive with string", () => {
  const active = "" + Date.now() / 1000 + 60000;
  expect(sessionStillActive(toMillisFromString(active))).toBe(true);
});

test("Session expired with string", () => {
  const expired = "" + Date.now() / 1000 - 60000;
  expect(sessionStillActive(toMillisFromString(expired))).toBe(false);
});