Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/Java/Openjdk/src/jdk.jstatd/share/man/   (Sun/Oracle ©)  Datei vom 23.0.2023 mit Größe 7 kB image not shown  

Quelle  inbound.test.ts   Sprache: unbekannt

 
import { describe, expect, it } from "vitest";
import { isHttpMediaUrl } from "./inbound.js";

describe("isHttpMediaUrl", () => {
  it("accepts only http and https urls", () => {
    expect(isHttpMediaUrl("https://example.com/image.png")).toBe(true);
    expect(isHttpMediaUrl("http://example.com/image.png")).toBe(true);
    expect(isHttpMediaUrl("file:///etc/passwd")).toBe(false);
    expect(isHttpMediaUrl("/etc/passwd")).toBe(false);
    expect(isHttpMediaUrl("data:text/plain;base64,SGVsbG8=")).toBe(false);
  });
});

Messung V0.5 in Prozent
C=75 H=100 G=88

[Dauer der Verarbeitung: 0.18 Sekunden, vorverarbeitet 2026-06-07]