summaryrefslogtreecommitdiffstats
path: root/dom/media/gtest/TestVideoUtils.cpp
blob: d322d15d644160bd74da9ae841395bb1d1971e62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* -*- 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
               {"", "", false, true, false},
               {" ", "", false, true, true},
               {"", "a", false, false, false},
               {" ", "a", false, false, false},
               {",", "a", false, false, false},
               {" , ", "", false, true, true},
               {" , ", "a", false, false, false},
               {"a", "a", true, true, true},
               {"a", "b", false, false, false},
               {"  a  ", "a", true, true, true},
               {"aa,bb", "aa", true, true, true},
               {"aa,bb", "bb", true, true, true},
               {"aa,bb", "cc", false, false, false},
               {"aa,bb", " aa ", false, false, false},
               {" a a ,  b b  ", "a a", true, true, true},
               {" , ,a 1,,  ,b  2,", "a 1", true, true, true},
               {" , ,a 1,,  ,b  2,", "b  2", true, true, true},
               {" , ,a 1,,  ,b  2,", "", false, true, true},
               {" , ,a 1,,  ,b  2,", " ", false, false, false},
               {" , ,a 1,,  ,b  2,", "A 1", false, false, false},
               {" , ,A 1,,  ,b  2,", "a 1", false, false, false}};

  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)";
  }
}