LCOV - code coverage report
Current view: top level - test/wpt/xhr - getresponseheader-server-date.js (source / functions) Hit Total Coverage
Test: lcov.info Lines: 56 56 100.0 %
Date: 2024-12-07 00:20:21 Functions: 2 2 100.0 %
Branches: 4 4 100.0 %

           Branch data     Line data    Source code
       1            [ + ]:          2 : import assert from 'node:assert/strict';
       2                 :          2 : import { XMLHttpRequest } from '../../../lib/whatwg-xhr.js';
       3                 :          2 : 
       4            [ + ]:          2 : export default (activeURL) => {
       5                 :          1 : 
       6                 :          1 :         let xhr = new XMLHttpRequest();
       7                 :          1 : 
       8            [ + ]:          1 :         xhr.onreadystatechange = () => {
       9                 :          4 : 
      10            [ + ]:          4 :                 if(xhr.readyState === 4){
      11                 :          1 :                         assert(xhr.getResponseHeader('server') !== null  );
      12                 :          1 :                         assert(xhr.getResponseHeader('date')   !== null  );
      13                 :          1 :                 }
      14                 :          1 :         };
      15                 :          1 : 
      16                 :          1 :         xhr.open('GET', `${activeURL}/headers.py`);
      17                 :          1 :         xhr.send();
      18                 :          1 : }
      19                 :          2 : 
      20                 :          2 : /*
      21                 :          2 :  * getresponseheader-server-date.htm
      22                 :          2 :  *
      23                 :          2 : 
      24                 :          2 : <!DOCTYPE html>
      25                 :          2 : <html>
      26                 :          2 :   <head>
      27                 :          2 :     <title>XMLHttpRequest: getResponseHeader() server and date</title>
      28                 :          2 :     <script src="/resources/testharness.js"></script>
      29                 :          2 :     <script src="/resources/testharnessreport.js"></script>
      30                 :          2 :     <link rel="help" href="https://xhr.spec.whatwg.org/#dom-xmlhttprequest-getresponseheader" data-tested-assertations="/following::OL[1]/LI[4] /following::OL[1]/LI[5] /following::OL[1]/LI[6]" />
      31                 :          2 :   </head>
      32                 :          2 :   <body>
      33                 :          2 :     <div id="log"></div>
      34                 :          2 :     <script>
      35                 :          2 :       var test = async_test()
      36                 :          2 :       test.step(function() {
      37                 :          2 :         var client = new XMLHttpRequest()
      38                 :          2 :         client.onreadystatechange = function() {
      39                 :          2 :           test.step(function() {
      40                 :          2 :             if(client.readyState == 4) {
      41                 :          2 :               assert_true(client.getResponseHeader("Server") != null)
      42                 :          2 :               assert_true(client.getResponseHeader("Date") != null)
      43                 :          2 :               test.done()
      44                 :          2 :             }
      45                 :          2 :           })
      46                 :          2 :         }
      47                 :          2 :         client.open("GET", "resources/headers.py")
      48                 :          2 :         client.send(null)
      49                 :          2 :       })
      50                 :          2 :   </script>
      51                 :          2 :  </body>
      52                 :          2 : </html>
      53                 :          2 : 
      54                 :          2 :  *
      55                 :          2 :  * getresponseheader-server-date.htm
      56                 :          2 :  */

Generated by: LCOV version 1.14