Skip to content

Commit 6e65bfa

Browse files
committed
feat: added new parameter to attend responses to both plain text and json
1 parent eab5427 commit 6e65bfa

6 files changed

+45
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.2.0] - Add new parameter to allow response from mock with Plain Text
2+
3+
- Add `MockContentTypeEnum` parameter to `ApiManager` to mock sends Plain Text response correctly
4+
- Parse String or Json according to the new parameter in mock
5+
- Send correct content-type header according to the new parameter in mock
6+
17
## [1.1.3] - Add new parameter from Dio override
28

39
- Add `FileAcessMode` parameter to `ApiManager` download methods

lib/pop_network.dart

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ export 'src/interceptors/pop_cache_interceptor.dart';
1414
export 'src/interceptors/pop_error_interceptor.dart';
1515
export 'src/interceptors/pop_network_log_interceptor.dart';
1616
export 'src/mock/mock_reply_params.dart';
17+
export 'src/mock/enums/mock_content_type_enum.dart';

lib/src/api_manager.dart

+27-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import 'package:dio/io.dart';
66
import 'package:http_mock_adapter/http_mock_adapter.dart';
77
import 'package:pop_network/src/i_api_manager.dart';
88
import 'package:pop_network/src/interceptors/pop_network_log_interceptor.dart';
9+
import 'package:pop_network/src/mock/enums/mock_content_type_enum.dart';
910
import 'package:pop_network/src/mock/mock_reply_params.dart';
1011

1112
class ApiManager extends IApiManager {
@@ -213,12 +214,37 @@ class ApiManager extends IApiManager {
213214
) async {
214215
await request.reply(
215216
params.status.code,
216-
json.decode(mock),
217+
buildResponse(
218+
contentType: params.contentType,
219+
mock: mock,
220+
),
217221
statusMessage: params.status.message,
218222
delay: params.delay,
223+
headers: {
224+
Headers.contentTypeHeader: buildHeaders(
225+
contentType: params.contentType,
226+
),
227+
},
219228
);
220229
}
221230

231+
dynamic buildResponse({
232+
required MockContentTypeEnum contentType,
233+
required String mock,
234+
}) {
235+
return switch (contentType) {
236+
MockContentTypeEnum.json => json.decode(mock),
237+
MockContentTypeEnum.plain => mock.substring(1, mock.length - 1),
238+
};
239+
}
240+
241+
List<String> buildHeaders({required MockContentTypeEnum contentType}) {
242+
return switch (contentType) {
243+
MockContentTypeEnum.json => ['application/json'],
244+
MockContentTypeEnum.plain => ['text/plain'],
245+
};
246+
}
247+
222248
@override
223249
Future<Response> download(
224250
String path,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
enum MockContentTypeEnum {
2+
plain,
3+
json;
4+
}

lib/src/mock/mock_reply_params.dart

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
import 'package:pop_network/src/enums/http_status_enum.dart';
2+
import 'package:pop_network/src/mock/enums/mock_content_type_enum.dart';
23

34
/// [MockReplyParams] is used to configure a mock request reply.
45
class MockReplyParams {
56
const MockReplyParams({
67
required this.mockPath,
78
this.status = HttpStatusEnum.ok,
89
this.delay = const Duration(seconds: 1),
10+
this.contentType = MockContentTypeEnum.json,
911
});
1012

1113
/// [status] is the HTTP status code to return.
1214
final HttpStatusEnum status;
1315

14-
/// [mockPath] is the path to the mock file.
16+
/// [mockPath] is the path to the mock file and it must be a json.
1517
final String mockPath;
1618

1719
/// [delay] is the delay before returning the mock response.
1820
final Duration delay;
21+
22+
/// [contentType] indicates which data format will be sent
23+
final MockContentTypeEnum contentType;
1924
}

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pop_network
22
description: The plug-in built to simplify HTTP requests and help the developer to make good use of the Rest API's.
3-
version: 1.1.3
3+
version: 1.2.0
44
homepage: https://github.com/PopcodeMobile/popnetwork
55
repository: https://github.com/PopcodeMobile/popnetwork
66

0 commit comments

Comments
 (0)