-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphql.nut.ts
More file actions
135 lines (116 loc) · 5.33 KB
/
graphql.nut.ts
File metadata and controls
135 lines (116 loc) · 5.33 KB
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
/*
* Copyright 2026, Salesforce, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { join } from 'node:path';
import fs from 'node:fs';
import { config, expect } from 'chai';
import { execCmd, TestSession } from '@salesforce/cli-plugins-testkit';
config.truncateThreshold = 0;
describe('api:request:graphql NUT', () => {
let testSession: TestSession;
before(async () => {
testSession = await TestSession.create({
scratchOrgs: [
{
config: 'config/project-scratch-def.json',
setDefault: true,
},
],
project: { sourceDir: join('test', 'test-files', 'data-project') },
devhubAuthStrategy: 'AUTO',
});
});
after(async () => {
await testSession?.clean();
});
describe('std out', () => {
it('get result in json format', () => {
const result = execCmd(`api request graphql --body ${join(testSession.project.dir, 'standard.txt')}`).shellOutput
.stdout;
// make sure we got a JSON object back
const parsed = JSON.parse(result) as Record<string, unknown>;
expect(Object.keys(parsed)).to.have.length;
// @ts-expect-error graphql response, just access what we need without typing it
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
expect(parsed.data!.uiapi.query.Account.edges.length).to.equal(1);
expect(parsed.errors).to.deep.equal([]);
});
it('get result in json format --body', () => {
const result = execCmd(
'api request graphql --body "query accounts { uiapi { query { Account { edges { node { Id Name { value } } } } } } }"'
).shellOutput.stdout;
// make sure we got a JSON object back
const parsed = JSON.parse(result) as Record<string, unknown>;
expect(Object.keys(parsed)).to.have.length;
// @ts-expect-error graphql response, just access what we need without typing it
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
expect(parsed.data!.uiapi.query.Account.edges.length).to.equal(1);
expect(parsed.errors).to.deep.equal([]);
});
it('no results from --body', () => {
const result = execCmd(
'api request graphql --body "query Address { uiapi { query {Address { edges { node { Id } } } } }}"'
).shellOutput.stdout;
// make sure we got a JSON object back
const parsed = JSON.parse(result) as Record<string, unknown>;
expect(Object.keys(parsed)).to.have.length;
// @ts-expect-error graphql response, just access what we need without typing it
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
expect(parsed.data!.uiapi.query.Address.edges.length).to.equal(0);
expect(parsed.errors).to.deep.equal([]);
});
it('get no results correctly', () => {
const result = execCmd(`api request graphql --body ${join(testSession.project.dir, 'noResults.txt')}`).shellOutput
.stdout;
// make sure we got a JSON object back
const parsed = JSON.parse(result) as Record<string, unknown>;
expect(Object.keys(parsed)).to.have.length;
// @ts-expect-error graphql response, just access what we need without typing it
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
expect(parsed.data!.uiapi.query.Address.edges.length).to.equal(0);
expect(parsed.errors).to.deep.equal([]);
});
});
describe('stream-to-file', () => {
it('get result in json format', () => {
execCmd(`api request graphql --body ${join(testSession.project.dir, 'standard.txt')} --stream-to-file out.txt`)
.shellOutput.stdout;
// make sure we got a JSON object back
const parsed = JSON.parse(fs.readFileSync(join(testSession.project.dir, 'out.txt'), 'utf8')) as Record<
string,
unknown
>;
expect(Object.keys(parsed)).to.have.length;
// @ts-expect-error graphql response, just access what we need without typing it
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
expect(parsed.data!.uiapi.query.Account.edges.length).to.equal(1);
expect(parsed.errors).to.deep.equal([]);
});
it('get no results correctly', () => {
execCmd(`api request graphql --body ${join(testSession.project.dir, 'noResults.txt')} --stream-to-file empty.txt`)
.shellOutput.stdout;
// make sure we got a JSON object back
const parsed = JSON.parse(fs.readFileSync(join(testSession.project.dir, 'empty.txt'), 'utf8')) as Record<
string,
unknown
>;
expect(Object.keys(parsed)).to.have.length;
// @ts-expect-error graphql response, just access what we need without typing it
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
expect(parsed.data!.uiapi.query.Address.edges.length).to.equal(0);
expect(parsed.errors).to.deep.equal([]);
});
});
});