view client/tests/unit/session/session.spec.js @ 1947:4235fa8f59d7

clien: pdf-gen: load logo externally; add prepare step * Change the way how the logo to be placed in the pdf is loaded: It can be configured in the `.env.local´ file, otherwise a placeholder will be loaded from the static assets. The placeholder has not been placed in `assets` because it won't be needed if a real logo has been specified and thus should not compiled in by default. * Add a mechanism to do asynchronous preparations before rendering. This is needed for the completeion of the Image() loading, but it also shows how asynchronous preparational step can be added in principle. * Disable the start button when the current rendering is in progress.
author Bernhard Reiter <bernhard@intevation.de>
date Tue, 22 Jan 2019 10:01:08 +0100
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);
});