File: RTCDataChannel-bufferedAmount.html

package info (click to toggle)
thunderbird 1%3A60.9.0-1~deb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,339,492 kB
  • sloc: cpp: 5,457,040; ansic: 2,360,385; python: 596,167; asm: 340,963; java: 326,296; xml: 258,830; sh: 84,445; makefile: 23,705; perl: 17,317; objc: 3,768; yacc: 1,766; ada: 1,681; lex: 1,364; pascal: 1,264; cs: 879; exp: 527; php: 436; lisp: 258; ruby: 153; awk: 152; sed: 53; csh: 27
file content (169 lines) | stat: -rw-r--r-- 6,287 bytes parent folder | download | duplicates (2)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!doctype html>
<meta charset=utf-8>
<title>RTCDataChannel.prototype.bufferedAmount</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="RTCPeerConnection-helper.js"></script>
<script>
  'use strict';

  // Test is based on the following editor draft:
  // https://w3c.github.io/webrtc-pc/archives/20170605/webrtc.html

  // The following helper functions are called from RTCPeerConnection-helper.js:
  //  createDataChannelPair
  //  awaitMessage
  //  blobToArrayBuffer
  //  assert_equals_array_buffer

  /*
    6.2.  RTCDataChannel
      interface RTCDataChannel : EventTarget {
        ...
        readonly  attribute unsigned long       bufferedAmount;
        void send(USVString data);
        void send(Blob data);
        void send(ArrayBuffer data);
        void send(ArrayBufferView data);
      };

      bufferedAmount
        The bufferedAmount attribute must return the number of bytes of application
        data (UTF-8 text and binary data) that have been queued using send() but that,
        as of the last time the event loop started executing a task, had not yet been
        transmitted to the network. (This thus includes any text sent during the
        execution of the current task, regardless of whether the user agent is able
        to transmit text asynchronously with script execution.) This does not include
        framing overhead incurred by the protocol, or buffering done by the operating
        system or network hardware. If the channel is closed, this attribute's value
        will only increase with each call to the send() method (the attribute does not
        reset to zero once the channel closes).


    [WebMessaging]
    interface MessageEvent : Event {
      readonly attribute any data;
      ...
    };
   */

  // Simple ASCII encoded string
  const helloString = 'hello';
  // ASCII encoded buffer representation of the string
  const helloBuffer = Uint8Array.of(0x68, 0x65, 0x6c, 0x6c, 0x6f);
  const helloBlob = new Blob([helloBuffer]);

  // Unicode string with multiple code units
  const unicodeString = '世界你好';
  // UTF-8 encoded buffer representation of the string
  const unicodeBuffer = Uint8Array.of(
    0xe4, 0xb8, 0x96, 0xe7, 0x95, 0x8c,
    0xe4, 0xbd, 0xa0, 0xe5, 0xa5, 0xbd);

  /*
    6.2.  send()
      3.  Execute the sub step that corresponds to the type of the methods argument:

          string object
            Let data be the object and increase the bufferedAmount attribute
            by the number of bytes needed to express data as UTF-8.
   */
  promise_test(t => {
    return createDataChannelPair()
    .then(([channel1, channel2]) => {
      channel1.send(unicodeString);
      assert_equals(channel1.bufferedAmount, unicodeBuffer.byteLength,
        'Expect bufferedAmount to be the byte length of the unicode string');

      return awaitMessage(channel2)
      .then(message => {
        assert_equals(channel1.bufferedAmount, 0,
          'Expect sender bufferedAmount to be reduced after message is sent');
      });
    });
  }, 'bufferedAmount should increase to byte length of encoded unicode string sent');

  /*
    6.2. send()
      3.  Execute the sub step that corresponds to the type of the methods argument:
          ArrayBuffer object
            Let data be the data stored in the buffer described by the ArrayBuffer
            object and increase the bufferedAmount attribute by the length of the
            ArrayBuffer in bytes.
   */
  promise_test(t => {
    return createDataChannelPair()
    .then(([channel1, channel2]) => {
      channel1.send(helloBuffer.buffer);
      assert_equals(channel1.bufferedAmount, helloBuffer.byteLength,
        'Expect bufferedAmount to increase to byte length of sent buffer');

      return awaitMessage(channel2)
      .then(messageBuffer => {
        assert_equals(channel1.bufferedAmount, 0,
          'Expect sender bufferedAmount to be reduced after message is sent');
      });
    });
  }, 'bufferedAmount should increase to byte length of buffer sent');

  /*
    6.2. send()
      3.  Execute the sub step that corresponds to the type of the methods argument:
          Blob object
            Let data be the raw data represented by the Blob object and increase
            the bufferedAmount attribute by the size of data, in bytes.
   */
  promise_test(t => {
    return createDataChannelPair()
    .then(([channel1, channel2]) => {
      channel1.send(helloBlob);
      assert_equals(channel1.bufferedAmount, helloBlob.size,
        'Expect bufferedAmount to increase to size of sent blob');

      return awaitMessage(channel2)
      .then(messageBuffer => {
        assert_equals(channel1.bufferedAmount, 0,
          'Expect sender bufferedAmount to be reduced after message is sent');
      });
    });
  }, 'bufferedAmount should increase to size of blob sent');

  // Test sending 3 messages: helloBuffer, unicodeString, helloBlob
  async_test(t => {
    let messageCount = 0;

    createDataChannelPair()
    .then(([channel1, channel2]) => {
      const onMessage = t.step_func(event => {
        const { data } = event;
        messageCount++;

        if(messageCount === 3) {
          assert_equals(channel1.bufferedAmount, 0,
            'Expect sender bufferedAmount to be reduced after message is sent');

          t.done();
        }
      });

      channel2.addEventListener('message', onMessage);

      channel1.send(helloBuffer);
      assert_equals(channel1.bufferedAmount, helloString.length,
        'Expect bufferedAmount to be the total length of all messages queued to send');

      channel1.send(unicodeString);
      assert_equals(channel1.bufferedAmount,
        helloString.length + unicodeBuffer.byteLength,
        'Expect bufferedAmount to be the total length of all messages queued to send');

      channel1.send(helloBlob);
      assert_equals(channel1.bufferedAmount,
        helloString.length*2 + unicodeBuffer.byteLength,
        'Expect bufferedAmount to be the total length of all messages queued to send');

    }).catch(t.step_func(err =>
      assert_unreached(`Unexpected promise rejection: ${err}`)));
  }, 'bufferedAmount should increase by byte length for each message sent');

</script>