view client/tests/unit/session/session.spec.js @ 4725:872787312b6b

Translated using Weblate (German (Austria)) Currently translated at 67.6% (319 of 472 strings) Translation: Gemma/client Translate-URL: https://hosted.weblate.org/projects/gemma/client/de_AT/
author Sascha Wilde <wilde@intevation.de>
date Thu, 17 Oct 2019 14:13:39 +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);
});