Shaka Packager SDK
mock_mpd_builder.h
1 // Copyright 2015 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #ifndef MPD_BASE_MOCK_MPD_BUILDER_H_
8 #define MPD_BASE_MOCK_MPD_BUILDER_H_
9 
10 #include <gmock/gmock.h>
11 
12 #include "packager/base/compiler_specific.h"
13 #include "packager/base/synchronization/lock.h"
14 #include "packager/mpd/base/adaptation_set.h"
15 #include "packager/mpd/base/content_protection_element.h"
16 #include "packager/mpd/base/mpd_builder.h"
17 #include "packager/mpd/base/period.h"
18 #include "packager/mpd/base/representation.h"
19 
20 namespace shaka {
21 
22 class MockMpdBuilder : public MpdBuilder {
23  public:
25  ~MockMpdBuilder() override;
26 
27  MOCK_METHOD1(GetOrCreatePeriod, Period*(double start_time_in_seconds));
28  MOCK_METHOD1(ToString, bool(std::string* output));
29 };
30 
31 class MockPeriod : public Period {
32  public:
33  MockPeriod(uint32_t period_id, double start_time_in_seconds);
34 
35  MOCK_METHOD2(GetOrCreateAdaptationSet,
36  AdaptationSet*(const MediaInfo& media_info,
37  bool content_protection_in_adaptation_set));
38 
39  private:
40  // Only for constructing the super class. Not used for testing.
41  base::AtomicSequenceNumber sequence_counter_;
42 };
43 
45  public:
46  // |adaptation_set_id| is the id for the AdaptationSet.
47  explicit MockAdaptationSet(uint32_t adaptation_set_id);
48  ~MockAdaptationSet() override;
49 
50  MOCK_METHOD1(AddRepresentation, Representation*(const MediaInfo& media_info));
51  MOCK_METHOD2(CopyRepresentationWithTimeOffset,
52  Representation*(const Representation& representation,
53  uint64_t presentation_time_offset));
54  MOCK_METHOD1(AddContentProtectionElement,
55  void(const ContentProtectionElement& element));
56  MOCK_METHOD2(UpdateContentProtectionPssh,
57  void(const std::string& drm_uuid, const std::string& pssh));
58  MOCK_METHOD1(AddRole, void(AdaptationSet::Role role));
59  MOCK_METHOD1(ForceSetSegmentAlignment, void(bool segment_alignment));
60  MOCK_METHOD1(AddAdaptationSetSwitching, void(uint32_t adaptation_set_id));
61  MOCK_METHOD1(AddTrickPlayReferenceId, void(uint32_t id));
62 
63  private:
64  // Only for constructing the super class. Not used for testing.
65  base::AtomicSequenceNumber sequence_counter_;
66 };
67 
69  public:
70  // |representation_id| is the numeric ID for the <Representation>.
71  explicit MockRepresentation(uint32_t representation_id);
72  ~MockRepresentation() override;
73 
74  MOCK_METHOD1(AddContentProtectionElement,
75  void(const ContentProtectionElement& element));
76  MOCK_METHOD2(UpdateContentProtectionPssh,
77  void(const std::string& drm_uuid, const std::string& pssh));
78  MOCK_METHOD3(AddNewSegment,
79  void(uint64_t start_time, uint64_t duration, uint64_t size));
80  MOCK_METHOD1(SetSampleDuration, void(uint32_t sample_duration));
81  MOCK_CONST_METHOD0(GetMediaInfo, const MediaInfo&());
82 };
83 
84 } // namespace shaka
85 
86 #endif // MPD_BASE_MOCK_MPD_BUILDER_H_
This class generates DASH MPDs (Media Presentation Descriptions).
Definition: mpd_builder.h:38
All the methods that are virtual are virtual for mocking.
virtual Period * GetOrCreatePeriod(double start_time_in_seconds)
Definition: mpd_builder.cc:124
virtual bool ToString(std::string *output)
Definition: mpd_builder.cc:139