Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/media/gtest/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 4 kB image not shown  

Quelle  TestVideoUtils.cpp   Sprache: C

 
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#include "gtest/gtest.h"
#include "nsMimeTypes.h"
#include "nsString.h"
#include "VideoUtils.h"

using namespace mozilla;

TEST(MediaMIMETypes, IsMediaMIMEType)
{
  EXPECT_TRUE(IsMediaMIMEType(AUDIO_MP4));
  EXPECT_TRUE(IsMediaMIMEType(VIDEO_MP4));
  EXPECT_TRUE(IsMediaMIMEType("application/x-mp4"));

  EXPECT_TRUE(IsMediaMIMEType("audio/m"));
  EXPECT_FALSE(IsMediaMIMEType("audio/"));

  EXPECT_FALSE(IsMediaMIMEType("vide/mp4"));
  EXPECT_FALSE(IsMediaMIMEType("videos/mp4"));

  // Expect lowercase only.
  EXPECT_FALSE(IsMediaMIMEType("Video/mp4"));
}

TEST(StringListRange, MakeStringListRange)
{
  static const struct {
    const char* mList;
    const char* mExpectedSkipEmpties;
    const char* mExpectedProcessAll;
    const char* mExpectedProcessEmpties;
  } tests[] = {
      // string              skip         all               empties
      {"""""|"""},
      {" """"|""|"},
      {",""""||""||"},
      {" , """"||""||"},
      {"a""a|""a|""a|"},
      {" a ""a|""a|""a|"},
      {"a,""a|""a||""a||"},
      {"a, ""a|""a||""a||"},
      {",a""a|""|a|""|a|"},
      {" ,a""a|""|a|""|a|"},
      {"aa,bb""aa|bb|""aa|bb|""aa|bb|"},
      {" a a , b b ""a a|b b|""a a|b b|""a a|b b|"},
      {" , ,a 1,, ,b 2,""a 1|b 2|""||a 1|||b 2||""||a 1|||b 2||"}};

  for (const auto& test : tests) {
    nsCString list(test.mList);
    nsCString out;
    for (const auto& item : MakeStringListRange(list)) {
      out += item;
      out += "|";
    }
    EXPECT_STREQ(test.mExpectedSkipEmpties, out.Data());
    out.SetLength(0);

    for (const auto& item :
         MakeStringListRange<StringListRangeEmptyItems::ProcessAll>(list)) {
      out += item;
      out += "|";
    }
    EXPECT_STREQ(test.mExpectedProcessAll, out.Data());
    out.SetLength(0);

    for (const auto& item :
         MakeStringListRange<StringListRangeEmptyItems::ProcessEmptyItems>(
             list)) {
      out += item;
      out += "|";
    }
    EXPECT_STREQ(test.mExpectedProcessEmpties, out.Data());
  }
}

TEST(StringListRange, StringListContains)
{
  static const struct {
    const char* mList;
    const char* mItemToSearch;
    bool mExpectedSkipEmpties;
    bool mExpectedProcessAll;
    bool mExpectedProcessEmpties;
  } tests[] = {// haystack            needle  skip   all    empties
               {""""falsetruefalse},
               {" """falsetruetrue},
               {"""a"falsefalsefalse},
               {" ""a"falsefalsefalse},
               {",""a"falsefalsefalse},
               {" , """falsetruetrue},
               {" , ""a"falsefalsefalse},
               {"a""a"truetruetrue},
               {"a""b"falsefalsefalse},
               {" a ""a"truetruetrue},
               {"aa,bb""aa"truetruetrue},
               {"aa,bb""bb"truetruetrue},
               {"aa,bb""cc"falsefalsefalse},
               {"aa,bb"" aa "falsefalsefalse},
               {" a a , b b ""a a"truetruetrue},
               {" , ,a 1,, ,b 2,""a 1"truetruetrue},
               {" , ,a 1,, ,b 2,""b 2"truetruetrue},
               {" , ,a 1,, ,b 2,"""falsetruetrue},
               {" , ,a 1,, ,b 2,"" "falsefalsefalse},
               {" , ,a 1,, ,b 2,""A 1"falsefalsefalse},
               {" , ,A 1,, ,b 2,""a 1"falsefalsefalse}};

  for (const auto& test : tests) {
    nsCString list(test.mList);
    nsCString itemToSearch(test.mItemToSearch);
    EXPECT_EQ(test.mExpectedSkipEmpties, StringListContains(list, itemToSearch))
        << "trying to find \"" << itemToSearch.Data() << "\" in \""
        << list.Data() << "\" (skipping empties)";
    EXPECT_EQ(test.mExpectedProcessAll,
              StringListContains<StringListRangeEmptyItems::ProcessAll>(
                  list, itemToSearch))
        << "trying to find \"" << itemToSearch.Data() << "\" in \""
        << list.Data() << "\" (processing everything)";
    EXPECT_EQ(test.mExpectedProcessEmpties,
              StringListContains<StringListRangeEmptyItems::ProcessEmptyItems>(
                  list, itemToSearch))
        << "trying to find \"" << itemToSearch.Data() << "\" in \""
        << list.Data() << "\" (processing empties)";
  }
}

Messung V0.5
C=90 H=95 G=92

¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.