summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/webgpu/api/operation/adapter/requestAdapterInfo.spec.ts
blob: 6c8c5b0deebf3f030036b2fd78e6ccc3996d94db (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
export const description = `
Tests various ways of calling GPUAdapter.requestAdapterInfo.

TODO:
- Find a way to perform tests with and without user activation
`;

import { Fixture } from '../../../../common/framework/fixture.js';
import { makeTestGroup } from '../../../../common/framework/test_group.js';
import { getGPU } from '../../../../common/util/navigator_gpu.js';
import { assert } from '../../../../common/util/util.js';

export const g = makeTestGroup(Fixture);

const normalizedIdentifierRegex = /^$|^[a-z0-9]+(-[a-z0-9]+)*$/;

g.test('adapter_info')
  .desc(
    `
  Test that calling requestAdapterInfo with no arguments:
    - Returns a GPUAdapterInfo structure
    - Every member in the structure except description is properly formatted`
  )
  .fn(async t => {
    const gpu = getGPU();
    const adapter = await gpu.requestAdapter();
    assert(adapter !== null);

    const adapterInfo = await adapter.requestAdapterInfo();

    t.expect(
      normalizedIdentifierRegex.test(adapterInfo.vendor),
      'adapterInfo.vendor should be a normalized identifier'
    );

    t.expect(
      normalizedIdentifierRegex.test(adapterInfo.architecture),
      'adapterInfo.architecture should be a normalized identifier'
    );

    t.expect(
      normalizedIdentifierRegex.test(adapterInfo.device),
      'adapterInfo.device should be a normalized identifier'
    );
  });

g.test('adapter_info_with_hints')
  .desc(
    `
  Test that calling requestAdapterInfo with hints:
    - Rejects without user activation
    - Succeed with user activation`
  )
  .unimplemented();