summaryrefslogtreecommitdiff
path: root/chromium/net/base/test_data_stream.h
blob: 7c4c758d26139378dc96f73fe902aa532d68ebba (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
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_BASE_TEST_DATA_STREAM_H_
#define NET_BASE_TEST_DATA_STREAM_H_

// This is a class for generating an infinite stream of data which can be
// verified independently to be the correct stream of data.

#include "base/memory/raw_ptr.h"

namespace net {

class TestDataStream {
 public:
  TestDataStream();

  // Fill |buffer| with |length| bytes of data from the stream.
  void GetBytes(char* buffer, int length);

  // Verify that |buffer| contains the expected next |length| bytes from the
  // stream.  Returns true if correct, false otherwise.
  bool VerifyBytes(const char *buffer, int length);

  // Resets all the data.
  void Reset();

 private:
  // If there is no data spilled over from the previous index, advance the
  // index and fill the buffer.
  void AdvanceIndex();

  // Consume data from the spill buffer.
  void Consume(int bytes);

  int index_;
  int bytes_remaining_;
  char buffer_[16];
  raw_ptr<char> buffer_ptr_;
};

}  // namespace net

#endif  // NET_BASE_TEST_DATA_STREAM_H_