mirror of
https://github.com/foss42/apidash.git
synced 2025-05-29 04:50:36 +08:00
Update curl_parser_test.dart
This commit is contained in:
@ -3,72 +3,71 @@ import 'package:apidash_core/apidash_core.dart';
|
||||
import 'package:curl_parser/curl_parser.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
const defaultTimeout = Timeout(Duration(seconds: 3));
|
||||
final exampleDotComUri = Uri.parse('https://api.apidash.dev/');
|
||||
final apiUri = Uri.parse('https://api.apidash.dev');
|
||||
|
||||
void main() {
|
||||
test('parse an easy cURL', () async {
|
||||
expect(
|
||||
Curl.parse('curl -X GET https://api.apidash.dev/'),
|
||||
Curl(method: 'GET', uri: exampleDotComUri),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'parse an easy cURL',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse('curl -X GET https://api.apidash.dev'),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: apiUri,
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('parse POST request with form-data', () {
|
||||
const curl = r'''curl -X POST https://api.apidash.dev/upload \
|
||||
-F "file=@/path/to/image.jpg" \
|
||||
-F "username=john"
|
||||
test('parse POST request with multipart/form-data', () {
|
||||
const curl = r'''curl -X POST 'https://api.apidash.dev/io/img' \
|
||||
-H 'Content-Type: multipart/form-data' \
|
||||
-F "imfile=@/path/to/image.jpg" \
|
||||
-F "token=john"
|
||||
''';
|
||||
|
||||
expect(
|
||||
Curl.parse(curl),
|
||||
Curl(
|
||||
method: 'POST',
|
||||
uri: Uri.parse('https://api.apidash.dev/upload'),
|
||||
uri: Uri.parse('https://api.apidash.dev/io/img'),
|
||||
headers: {"Content-Type": "multipart/form-data"},
|
||||
form: true,
|
||||
formData: [
|
||||
FormDataModel(
|
||||
name: "file",
|
||||
value: "/path/to/image.jpg",
|
||||
type: FormDataType.file),
|
||||
name: "imfile",
|
||||
value: "/path/to/image.jpg",
|
||||
type: FormDataType.file,
|
||||
),
|
||||
FormDataModel(
|
||||
name: "username", value: "john", type: FormDataType.text)
|
||||
name: "token",
|
||||
value: "john",
|
||||
type: FormDataType.text,
|
||||
)
|
||||
],
|
||||
),
|
||||
);
|
||||
});
|
||||
|
||||
test('parse POST request with form-data including a file and arrays', () {
|
||||
const curl = r'''curl -X POST https://api.apidash.dev/upload \
|
||||
-F "file=@/path/to/image.jpg" \
|
||||
-F "username=john" \
|
||||
-F "tags=tag1" \
|
||||
-F "tags=tag2"
|
||||
test('parse POST request with x-www-form-urlencoded', () {
|
||||
const curl = r'''curl -X 'POST' \
|
||||
'https://api.apidash.dev/io/form' \
|
||||
-H 'Content-Type: application/x-www-form-urlencoded' \
|
||||
-d 'text=apidash&sep=%7C×=3'
|
||||
''';
|
||||
|
||||
expect(
|
||||
Curl.parse(curl),
|
||||
Curl(
|
||||
method: 'POST',
|
||||
uri: Uri.parse('https://api.apidash.dev/upload'),
|
||||
headers: {"Content-Type": "multipart/form-data"},
|
||||
form: true,
|
||||
formData: [
|
||||
FormDataModel(
|
||||
name: "file",
|
||||
value: "/path/to/image.jpg",
|
||||
type: FormDataType.file),
|
||||
FormDataModel(
|
||||
name: "username", value: "john", type: FormDataType.text),
|
||||
FormDataModel(name: "tags", value: "tag1", type: FormDataType.text),
|
||||
FormDataModel(name: "tags", value: "tag2", type: FormDataType.text),
|
||||
],
|
||||
uri: Uri.parse('https://api.apidash.dev/io/form'),
|
||||
headers: {"Content-Type": "application/x-www-form-urlencoded"},
|
||||
data: 'text=apidash&sep=%7C×=3',
|
||||
),
|
||||
);
|
||||
});
|
||||
|
||||
test('should throw exception when form data is not in key=value format', () {
|
||||
test('should throw exception when multipart/form-data is not valid', () {
|
||||
const curl = r'''curl -X POST https://api.apidash.dev/upload \
|
||||
-F "invalid_format" \
|
||||
-F "username=john"
|
||||
@ -76,186 +75,254 @@ void main() {
|
||||
expect(() => Curl.parse(curl), throwsException);
|
||||
});
|
||||
|
||||
test('Check quotes support for URL string', () async {
|
||||
expect(
|
||||
Curl.parse('curl -X GET "https://api.apidash.dev/"'),
|
||||
Curl(method: 'GET', uri: exampleDotComUri),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'Check quotes support for URL string',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse('curl -X GET "https://api.apidash.dev"'),
|
||||
Curl(method: 'GET', uri: apiUri),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('parses two headers', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
'curl -X GET https://api.apidash.dev/ -H "${HttpHeaders.contentTypeHeader}: ${ContentType.text}" -H "${HttpHeaders.authorizationHeader}: Bearer %token%"',
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: exampleDotComUri,
|
||||
headers: {
|
||||
HttpHeaders.contentTypeHeader: ContentType.text.toString(),
|
||||
HttpHeaders.authorizationHeader: 'Bearer %token%',
|
||||
},
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'parses two headers',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
'curl -X GET https://api.apidash.dev -H "${HttpHeaders.contentTypeHeader}: ${ContentType.text}" -H "${HttpHeaders.authorizationHeader}: Bearer %token%"',
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: apiUri,
|
||||
headers: {
|
||||
HttpHeaders.contentTypeHeader: ContentType.text.toString(),
|
||||
HttpHeaders.authorizationHeader: 'Bearer %token%',
|
||||
},
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('parses a lot of headers', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r'curl -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36" -H "Upgrade-Insecure-Requests: 1" -H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" -H "Accept-Encoding: gzip, deflate, br" -H "Accept-Language: en,en-GB;q=0.9,en-US;q=0.8,ru;q=0.7" -H "Cache-Control: max-age=0" -H "Dnt: 1" -H "Sec-Ch-Ua: \"Google Chrome\";v=\"117\", \"Not;A=Brand\";v=\"8\", \"Chromium\";v=\"117\"" -H "Sec-Ch-Ua-Mobile: ?0" -H "Sec-Ch-Ua-Platform: \"macOS\"" -H "Sec-Fetch-Dest: document" -H "Sec-Fetch-Mode: navigate" -H "Sec-Fetch-Site: same-origin" -H "Sec-Fetch-User: ?1" https://apidash.dev',
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://apidash.dev'),
|
||||
headers: {
|
||||
'User-Agent':
|
||||
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36',
|
||||
'Upgrade-Insecure-Requests': '1',
|
||||
'Accept':
|
||||
'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
|
||||
'Accept-Encoding': 'gzip, deflate, br',
|
||||
'Accept-Language': 'en,en-GB;q=0.9,en-US;q=0.8,ru;q=0.7',
|
||||
'Cache-Control': 'max-age=0',
|
||||
'Dnt': '1',
|
||||
'Sec-Ch-Ua':
|
||||
'"Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"',
|
||||
'Sec-Ch-Ua-Mobile': '?0',
|
||||
'Sec-Ch-Ua-Platform': '"macOS"',
|
||||
'Sec-Fetch-Dest': 'document',
|
||||
'Sec-Fetch-Mode': 'navigate',
|
||||
'Sec-Fetch-Site': 'same-origin',
|
||||
'Sec-Fetch-User': '?1'
|
||||
},
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'parses a lot of headers',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r'''curl -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36" \
|
||||
-H "Upgrade-Insecure-Requests: 1" \
|
||||
-H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" \
|
||||
-H "Accept-Encoding: gzip, deflate, br" \
|
||||
-H "Accept-Language: en,en-GB;q=0.9,en-US;q=0.8,ru;q=0.7" \
|
||||
-H "Cache-Control: max-age=0" \
|
||||
-H "Dnt: 1" \
|
||||
-H "Sec-Ch-Ua: \"Google Chrome\";v=\"117\", \"Not;A=Brand\";v=\"8\", \"Chromium\";v=\"117\"" \
|
||||
-H "Sec-Ch-Ua-Mobile: ?0" \
|
||||
-H "Sec-Ch-Ua-Platform: \"macOS\"" \
|
||||
-H "Sec-Fetch-Dest: document" \
|
||||
-H "Sec-Fetch-Mode: navigate" \
|
||||
-H "Sec-Fetch-Site: same-origin" \
|
||||
-H "Sec-Fetch-User: ?1" https://apidash.dev''',
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://apidash.dev'),
|
||||
headers: {
|
||||
'User-Agent':
|
||||
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36',
|
||||
'Upgrade-Insecure-Requests': '1',
|
||||
'Accept':
|
||||
'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
|
||||
'Accept-Encoding': 'gzip, deflate, br',
|
||||
'Accept-Language': 'en,en-GB;q=0.9,en-US;q=0.8,ru;q=0.7',
|
||||
'Cache-Control': 'max-age=0',
|
||||
'Dnt': '1',
|
||||
'Sec-Ch-Ua':
|
||||
'"Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"',
|
||||
'Sec-Ch-Ua-Mobile': '?0',
|
||||
'Sec-Ch-Ua-Platform': '"macOS"',
|
||||
'Sec-Fetch-Dest': 'document',
|
||||
'Sec-Fetch-Mode': 'navigate',
|
||||
'Sec-Fetch-Site': 'same-origin',
|
||||
'Sec-Fetch-User': '?1'
|
||||
},
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('throw exception when parses wrong input', () async {
|
||||
expect(() => Curl.parse('1f'), throwsException);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'throw exception when parses wrong input',
|
||||
() async {
|
||||
expect(() => Curl.parse('1f'), throwsException);
|
||||
},
|
||||
);
|
||||
|
||||
test('tryParse return null when parses wrong input', () async {
|
||||
expect(Curl.tryParse('1f'), null);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'tryParse return null when parses wrong input',
|
||||
() async {
|
||||
expect(Curl.tryParse('1f'), null);
|
||||
},
|
||||
);
|
||||
|
||||
test('tryParse success', () async {
|
||||
expect(
|
||||
Curl.tryParse(
|
||||
'curl -X GET https://api.apidash.dev/ -H "${HttpHeaders.contentTypeHeader}: ${ContentType.text}" -H "${HttpHeaders.authorizationHeader}: Bearer %token%"',
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: exampleDotComUri,
|
||||
headers: {
|
||||
HttpHeaders.contentTypeHeader: ContentType.text.toString(),
|
||||
HttpHeaders.authorizationHeader: 'Bearer %token%',
|
||||
},
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'tryParse success',
|
||||
() async {
|
||||
expect(
|
||||
Curl.tryParse(
|
||||
'curl -X GET https://api.apidash.dev -H "test: Agent"',
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: apiUri,
|
||||
headers: {
|
||||
'test': 'Agent',
|
||||
},
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('GET 1', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.apidash.dev'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://api.apidash.dev'),
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'HEAD 1',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl -I 'https://api.apidash.dev'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'HEAD',
|
||||
uri: apiUri,
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('GET 2', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.apidash.dev/country/data?code=US'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://api.apidash.dev/country/data?code=US'),
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'HEAD 2',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --head 'https://api.apidash.dev'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'HEAD',
|
||||
uri: apiUri,
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('GET 3', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.apidash.dev/country/data?code=IND'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://api.apidash.dev/country/data?code=IND'),
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'GET 1',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.apidash.dev'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: apiUri,
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('GET 4', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.apidash.dev/humanize/social?num=8700000&digits=3&system=SS&add_space=true&trailing_zeros=true'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse(
|
||||
'https://api.apidash.dev/humanize/social?num=8700000&digits=3&system=SS&add_space=true&trailing_zeros=true'),
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
test(
|
||||
'GET 2',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.apidash.dev/country/data?code=US'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://api.apidash.dev/country/data?code=US'),
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('GET with GitHub API', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.github.com/repos/foss42/apidash' \
|
||||
test(
|
||||
'GET 3',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl 'https://api.apidash.dev/country/data?code=IND'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://api.apidash.dev/country/data?code=IND'),
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test(
|
||||
'GET with GitHub API',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.github.com/repos/foss42/apidash' \
|
||||
--header 'User-Agent: Test Agent'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://api.github.com/repos/foss42/apidash'),
|
||||
headers: {"User-Agent": "Test Agent"},
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://api.github.com/repos/foss42/apidash'),
|
||||
headers: {"User-Agent": "Test Agent"},
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('GET with GitHub API and raw parameter', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.github.com/repos/foss42/apidash?raw=true' \
|
||||
test(
|
||||
'GET with GitHub API and raw parameter',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --url 'https://api.github.com/repos/foss42/apidash?raw=true' \
|
||||
--header 'User-Agent: Test Agent'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri: Uri.parse('https://api.github.com/repos/foss42/apidash?raw=true'),
|
||||
headers: {"User-Agent": "Test Agent"},
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
),
|
||||
Curl(
|
||||
method: 'GET',
|
||||
uri:
|
||||
Uri.parse('https://api.github.com/repos/foss42/apidash?raw=true'),
|
||||
headers: {"User-Agent": "Test Agent"},
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('POST with text/plain content', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --request POST \
|
||||
test(
|
||||
'POST with text/plain content',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --request POST \
|
||||
--url 'https://api.apidash.dev/case/lower' \
|
||||
--header 'Content-Type: text/plain' \
|
||||
--data '{
|
||||
"text": "I LOVE Flutter"
|
||||
}'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'POST',
|
||||
uri: Uri.parse('https://api.apidash.dev/case/lower'),
|
||||
headers: {"Content-Type": "text/plain"},
|
||||
data: r"""{
|
||||
),
|
||||
Curl(
|
||||
method: 'POST',
|
||||
uri: Uri.parse('https://api.apidash.dev/case/lower'),
|
||||
headers: {"Content-Type": "text/plain"},
|
||||
data: r"""{
|
||||
"text": "I LOVE Flutter"
|
||||
}""",
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test('POST with application/json content', () async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --request POST \
|
||||
test(
|
||||
'POST with application/json content',
|
||||
() async {
|
||||
expect(
|
||||
Curl.parse(
|
||||
r"""curl --request POST \
|
||||
--url 'https://api.apidash.dev/case/lower' \
|
||||
--header 'Content-Type: application/json' \
|
||||
--data '{
|
||||
@ -266,12 +333,12 @@ void main() {
|
||||
"no": 1.2,
|
||||
"arr": ["null", "true", "false", null]
|
||||
}'""",
|
||||
),
|
||||
Curl(
|
||||
method: 'POST',
|
||||
uri: Uri.parse('https://api.apidash.dev/case/lower'),
|
||||
headers: {"Content-Type": "application/json"},
|
||||
data: r"""{
|
||||
),
|
||||
Curl(
|
||||
method: 'POST',
|
||||
uri: Uri.parse('https://api.apidash.dev/case/lower'),
|
||||
headers: {"Content-Type": "application/json"},
|
||||
data: r"""{
|
||||
"text": "I LOVE Flutter",
|
||||
"flag": null,
|
||||
"male": true,
|
||||
@ -279,7 +346,8 @@ void main() {
|
||||
"no": 1.2,
|
||||
"arr": ["null", "true", "false", null]
|
||||
}""",
|
||||
),
|
||||
);
|
||||
}, timeout: defaultTimeout);
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user