| // ignore_for_file: camel_case_types |
| // ignore_for_file: comment_references |
| // ignore_for_file: constant_identifier_names |
| // ignore_for_file: directives_ordering |
| // ignore_for_file: file_names |
| // ignore_for_file: library_names |
| // ignore_for_file: lines_longer_than_80_chars |
| // ignore_for_file: non_constant_identifier_names |
| // ignore_for_file: omit_local_variable_types |
| // ignore_for_file: prefer_expression_function_bodies |
| // ignore_for_file: prefer_final_locals |
| // ignore_for_file: prefer_interpolation_to_compose_strings |
| // ignore_for_file: unnecessary_brace_in_string_interps |
| // ignore_for_file: unnecessary_cast |
| // ignore_for_file: unnecessary_lambdas |
| // ignore_for_file: unnecessary_parenthesis |
| // ignore_for_file: unnecessary_string_interpolations |
| // ignore_for_file: avoid_returning_null |
| // ignore_for_file: cascade_invocations |
| // ignore_for_file: prefer_single_quotes |
| // ignore_for_file: unused_local_variable |
| |
| library googleapis.doubleclickbidmanager.v1_1.test; |
| |
| import "dart:core" as core; |
| import "dart:async" as async; |
| import "dart:convert" as convert; |
| |
| import 'package:http/http.dart' as http; |
| import 'package:test/test.dart' as unittest; |
| |
| import 'package:googleapis/doubleclickbidmanager/v1_1.dart' as api; |
| |
| class HttpServerMock extends http.BaseClient { |
| core.Function _callback; |
| core.bool _expectJson; |
| |
| void register(core.Function callback, core.bool expectJson) { |
| _callback = callback; |
| _expectJson = expectJson; |
| } |
| |
| @core.override |
| async.Future<http.StreamedResponse> send(http.BaseRequest request) async { |
| if (_expectJson) { |
| final jsonString = |
| await request.finalize().transform(convert.utf8.decoder).join(''); |
| if (jsonString.isEmpty) { |
| return _callback(request, null); |
| } else { |
| return _callback(request, convert.json.decode(jsonString)); |
| } |
| } else { |
| var stream = request.finalize(); |
| if (stream == null) { |
| return _callback(request, []); |
| } else { |
| final data = await stream.toBytes(); |
| return _callback(request, data); |
| } |
| } |
| } |
| } |
| |
| http.StreamedResponse stringResponse(core.int status, |
| core.Map<core.String, core.String> headers, core.String body) { |
| var stream = async.Stream.fromIterable([convert.utf8.encode(body)]); |
| return http.StreamedResponse(stream, status, headers: headers); |
| } |
| |
| core.List<api.Rule> buildUnnamed4928() { |
| var o = <api.Rule>[]; |
| o.add(buildRule()); |
| o.add(buildRule()); |
| return o; |
| } |
| |
| void checkUnnamed4928(core.List<api.Rule> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkRule(o[0]); |
| checkRule(o[1]); |
| } |
| |
| core.int buildCounterChannelGrouping = 0; |
| api.ChannelGrouping buildChannelGrouping() { |
| var o = api.ChannelGrouping(); |
| buildCounterChannelGrouping++; |
| if (buildCounterChannelGrouping < 3) { |
| o.fallbackName = 'foo'; |
| o.name = 'foo'; |
| o.rules = buildUnnamed4928(); |
| } |
| buildCounterChannelGrouping--; |
| return o; |
| } |
| |
| void checkChannelGrouping(api.ChannelGrouping o) { |
| buildCounterChannelGrouping++; |
| if (buildCounterChannelGrouping < 3) { |
| unittest.expect(o.fallbackName, unittest.equals('foo')); |
| unittest.expect(o.name, unittest.equals('foo')); |
| checkUnnamed4928(o.rules); |
| } |
| buildCounterChannelGrouping--; |
| } |
| |
| core.List<api.EventFilter> buildUnnamed4929() { |
| var o = <api.EventFilter>[]; |
| o.add(buildEventFilter()); |
| o.add(buildEventFilter()); |
| return o; |
| } |
| |
| void checkUnnamed4929(core.List<api.EventFilter> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkEventFilter(o[0]); |
| checkEventFilter(o[1]); |
| } |
| |
| core.int buildCounterDisjunctiveMatchStatement = 0; |
| api.DisjunctiveMatchStatement buildDisjunctiveMatchStatement() { |
| var o = api.DisjunctiveMatchStatement(); |
| buildCounterDisjunctiveMatchStatement++; |
| if (buildCounterDisjunctiveMatchStatement < 3) { |
| o.eventFilters = buildUnnamed4929(); |
| } |
| buildCounterDisjunctiveMatchStatement--; |
| return o; |
| } |
| |
| void checkDisjunctiveMatchStatement(api.DisjunctiveMatchStatement o) { |
| buildCounterDisjunctiveMatchStatement++; |
| if (buildCounterDisjunctiveMatchStatement < 3) { |
| checkUnnamed4929(o.eventFilters); |
| } |
| buildCounterDisjunctiveMatchStatement--; |
| } |
| |
| core.List<core.String> buildUnnamed4930() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4930(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.int buildCounterDownloadLineItemsRequest = 0; |
| api.DownloadLineItemsRequest buildDownloadLineItemsRequest() { |
| var o = api.DownloadLineItemsRequest(); |
| buildCounterDownloadLineItemsRequest++; |
| if (buildCounterDownloadLineItemsRequest < 3) { |
| o.fileSpec = 'foo'; |
| o.filterIds = buildUnnamed4930(); |
| o.filterType = 'foo'; |
| o.format = 'foo'; |
| } |
| buildCounterDownloadLineItemsRequest--; |
| return o; |
| } |
| |
| void checkDownloadLineItemsRequest(api.DownloadLineItemsRequest o) { |
| buildCounterDownloadLineItemsRequest++; |
| if (buildCounterDownloadLineItemsRequest < 3) { |
| unittest.expect(o.fileSpec, unittest.equals('foo')); |
| checkUnnamed4930(o.filterIds); |
| unittest.expect(o.filterType, unittest.equals('foo')); |
| unittest.expect(o.format, unittest.equals('foo')); |
| } |
| buildCounterDownloadLineItemsRequest--; |
| } |
| |
| core.int buildCounterDownloadLineItemsResponse = 0; |
| api.DownloadLineItemsResponse buildDownloadLineItemsResponse() { |
| var o = api.DownloadLineItemsResponse(); |
| buildCounterDownloadLineItemsResponse++; |
| if (buildCounterDownloadLineItemsResponse < 3) { |
| o.lineItems = 'foo'; |
| } |
| buildCounterDownloadLineItemsResponse--; |
| return o; |
| } |
| |
| void checkDownloadLineItemsResponse(api.DownloadLineItemsResponse o) { |
| buildCounterDownloadLineItemsResponse++; |
| if (buildCounterDownloadLineItemsResponse < 3) { |
| unittest.expect(o.lineItems, unittest.equals('foo')); |
| } |
| buildCounterDownloadLineItemsResponse--; |
| } |
| |
| core.List<core.String> buildUnnamed4931() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4931(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.List<core.String> buildUnnamed4932() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4932(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.int buildCounterDownloadRequest = 0; |
| api.DownloadRequest buildDownloadRequest() { |
| var o = api.DownloadRequest(); |
| buildCounterDownloadRequest++; |
| if (buildCounterDownloadRequest < 3) { |
| o.fileTypes = buildUnnamed4931(); |
| o.filterIds = buildUnnamed4932(); |
| o.filterType = 'foo'; |
| o.version = 'foo'; |
| } |
| buildCounterDownloadRequest--; |
| return o; |
| } |
| |
| void checkDownloadRequest(api.DownloadRequest o) { |
| buildCounterDownloadRequest++; |
| if (buildCounterDownloadRequest < 3) { |
| checkUnnamed4931(o.fileTypes); |
| checkUnnamed4932(o.filterIds); |
| unittest.expect(o.filterType, unittest.equals('foo')); |
| unittest.expect(o.version, unittest.equals('foo')); |
| } |
| buildCounterDownloadRequest--; |
| } |
| |
| core.int buildCounterDownloadResponse = 0; |
| api.DownloadResponse buildDownloadResponse() { |
| var o = api.DownloadResponse(); |
| buildCounterDownloadResponse++; |
| if (buildCounterDownloadResponse < 3) { |
| o.adGroups = 'foo'; |
| o.ads = 'foo'; |
| o.campaigns = 'foo'; |
| o.insertionOrders = 'foo'; |
| o.inventorySources = 'foo'; |
| o.lineItems = 'foo'; |
| } |
| buildCounterDownloadResponse--; |
| return o; |
| } |
| |
| void checkDownloadResponse(api.DownloadResponse o) { |
| buildCounterDownloadResponse++; |
| if (buildCounterDownloadResponse < 3) { |
| unittest.expect(o.adGroups, unittest.equals('foo')); |
| unittest.expect(o.ads, unittest.equals('foo')); |
| unittest.expect(o.campaigns, unittest.equals('foo')); |
| unittest.expect(o.insertionOrders, unittest.equals('foo')); |
| unittest.expect(o.inventorySources, unittest.equals('foo')); |
| unittest.expect(o.lineItems, unittest.equals('foo')); |
| } |
| buildCounterDownloadResponse--; |
| } |
| |
| core.int buildCounterEventFilter = 0; |
| api.EventFilter buildEventFilter() { |
| var o = api.EventFilter(); |
| buildCounterEventFilter++; |
| if (buildCounterEventFilter < 3) { |
| o.dimensionFilter = buildPathQueryOptionsFilter(); |
| } |
| buildCounterEventFilter--; |
| return o; |
| } |
| |
| void checkEventFilter(api.EventFilter o) { |
| buildCounterEventFilter++; |
| if (buildCounterEventFilter < 3) { |
| checkPathQueryOptionsFilter(o.dimensionFilter); |
| } |
| buildCounterEventFilter--; |
| } |
| |
| core.int buildCounterFilterPair = 0; |
| api.FilterPair buildFilterPair() { |
| var o = api.FilterPair(); |
| buildCounterFilterPair++; |
| if (buildCounterFilterPair < 3) { |
| o.type = 'foo'; |
| o.value = 'foo'; |
| } |
| buildCounterFilterPair--; |
| return o; |
| } |
| |
| void checkFilterPair(api.FilterPair o) { |
| buildCounterFilterPair++; |
| if (buildCounterFilterPair < 3) { |
| unittest.expect(o.type, unittest.equals('foo')); |
| unittest.expect(o.value, unittest.equals('foo')); |
| } |
| buildCounterFilterPair--; |
| } |
| |
| core.List<api.Query> buildUnnamed4933() { |
| var o = <api.Query>[]; |
| o.add(buildQuery()); |
| o.add(buildQuery()); |
| return o; |
| } |
| |
| void checkUnnamed4933(core.List<api.Query> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkQuery(o[0]); |
| checkQuery(o[1]); |
| } |
| |
| core.int buildCounterListQueriesResponse = 0; |
| api.ListQueriesResponse buildListQueriesResponse() { |
| var o = api.ListQueriesResponse(); |
| buildCounterListQueriesResponse++; |
| if (buildCounterListQueriesResponse < 3) { |
| o.kind = 'foo'; |
| o.nextPageToken = 'foo'; |
| o.queries = buildUnnamed4933(); |
| } |
| buildCounterListQueriesResponse--; |
| return o; |
| } |
| |
| void checkListQueriesResponse(api.ListQueriesResponse o) { |
| buildCounterListQueriesResponse++; |
| if (buildCounterListQueriesResponse < 3) { |
| unittest.expect(o.kind, unittest.equals('foo')); |
| unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| checkUnnamed4933(o.queries); |
| } |
| buildCounterListQueriesResponse--; |
| } |
| |
| core.List<api.Report> buildUnnamed4934() { |
| var o = <api.Report>[]; |
| o.add(buildReport()); |
| o.add(buildReport()); |
| return o; |
| } |
| |
| void checkUnnamed4934(core.List<api.Report> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkReport(o[0]); |
| checkReport(o[1]); |
| } |
| |
| core.int buildCounterListReportsResponse = 0; |
| api.ListReportsResponse buildListReportsResponse() { |
| var o = api.ListReportsResponse(); |
| buildCounterListReportsResponse++; |
| if (buildCounterListReportsResponse < 3) { |
| o.kind = 'foo'; |
| o.nextPageToken = 'foo'; |
| o.reports = buildUnnamed4934(); |
| } |
| buildCounterListReportsResponse--; |
| return o; |
| } |
| |
| void checkListReportsResponse(api.ListReportsResponse o) { |
| buildCounterListReportsResponse++; |
| if (buildCounterListReportsResponse < 3) { |
| unittest.expect(o.kind, unittest.equals('foo')); |
| unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| checkUnnamed4934(o.reports); |
| } |
| buildCounterListReportsResponse--; |
| } |
| |
| core.int buildCounterOptions = 0; |
| api.Options buildOptions() { |
| var o = api.Options(); |
| buildCounterOptions++; |
| if (buildCounterOptions < 3) { |
| o.includeOnlyTargetedUserLists = true; |
| o.pathQueryOptions = buildPathQueryOptions(); |
| } |
| buildCounterOptions--; |
| return o; |
| } |
| |
| void checkOptions(api.Options o) { |
| buildCounterOptions++; |
| if (buildCounterOptions < 3) { |
| unittest.expect(o.includeOnlyTargetedUserLists, unittest.isTrue); |
| checkPathQueryOptions(o.pathQueryOptions); |
| } |
| buildCounterOptions--; |
| } |
| |
| core.List<api.FilterPair> buildUnnamed4935() { |
| var o = <api.FilterPair>[]; |
| o.add(buildFilterPair()); |
| o.add(buildFilterPair()); |
| return o; |
| } |
| |
| void checkUnnamed4935(core.List<api.FilterPair> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkFilterPair(o[0]); |
| checkFilterPair(o[1]); |
| } |
| |
| core.List<core.String> buildUnnamed4936() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4936(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.List<core.String> buildUnnamed4937() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4937(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.int buildCounterParameters = 0; |
| api.Parameters buildParameters() { |
| var o = api.Parameters(); |
| buildCounterParameters++; |
| if (buildCounterParameters < 3) { |
| o.filters = buildUnnamed4935(); |
| o.groupBys = buildUnnamed4936(); |
| o.includeInviteData = true; |
| o.metrics = buildUnnamed4937(); |
| o.options = buildOptions(); |
| o.type = 'foo'; |
| } |
| buildCounterParameters--; |
| return o; |
| } |
| |
| void checkParameters(api.Parameters o) { |
| buildCounterParameters++; |
| if (buildCounterParameters < 3) { |
| checkUnnamed4935(o.filters); |
| checkUnnamed4936(o.groupBys); |
| unittest.expect(o.includeInviteData, unittest.isTrue); |
| checkUnnamed4937(o.metrics); |
| checkOptions(o.options); |
| unittest.expect(o.type, unittest.equals('foo')); |
| } |
| buildCounterParameters--; |
| } |
| |
| core.List<api.EventFilter> buildUnnamed4938() { |
| var o = <api.EventFilter>[]; |
| o.add(buildEventFilter()); |
| o.add(buildEventFilter()); |
| return o; |
| } |
| |
| void checkUnnamed4938(core.List<api.EventFilter> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkEventFilter(o[0]); |
| checkEventFilter(o[1]); |
| } |
| |
| core.int buildCounterPathFilter = 0; |
| api.PathFilter buildPathFilter() { |
| var o = api.PathFilter(); |
| buildCounterPathFilter++; |
| if (buildCounterPathFilter < 3) { |
| o.eventFilters = buildUnnamed4938(); |
| o.pathMatchPosition = 'foo'; |
| } |
| buildCounterPathFilter--; |
| return o; |
| } |
| |
| void checkPathFilter(api.PathFilter o) { |
| buildCounterPathFilter++; |
| if (buildCounterPathFilter < 3) { |
| checkUnnamed4938(o.eventFilters); |
| unittest.expect(o.pathMatchPosition, unittest.equals('foo')); |
| } |
| buildCounterPathFilter--; |
| } |
| |
| core.List<api.PathFilter> buildUnnamed4939() { |
| var o = <api.PathFilter>[]; |
| o.add(buildPathFilter()); |
| o.add(buildPathFilter()); |
| return o; |
| } |
| |
| void checkUnnamed4939(core.List<api.PathFilter> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkPathFilter(o[0]); |
| checkPathFilter(o[1]); |
| } |
| |
| core.int buildCounterPathQueryOptions = 0; |
| api.PathQueryOptions buildPathQueryOptions() { |
| var o = api.PathQueryOptions(); |
| buildCounterPathQueryOptions++; |
| if (buildCounterPathQueryOptions < 3) { |
| o.channelGrouping = buildChannelGrouping(); |
| o.pathFilters = buildUnnamed4939(); |
| } |
| buildCounterPathQueryOptions--; |
| return o; |
| } |
| |
| void checkPathQueryOptions(api.PathQueryOptions o) { |
| buildCounterPathQueryOptions++; |
| if (buildCounterPathQueryOptions < 3) { |
| checkChannelGrouping(o.channelGrouping); |
| checkUnnamed4939(o.pathFilters); |
| } |
| buildCounterPathQueryOptions--; |
| } |
| |
| core.List<core.String> buildUnnamed4940() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4940(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.int buildCounterPathQueryOptionsFilter = 0; |
| api.PathQueryOptionsFilter buildPathQueryOptionsFilter() { |
| var o = api.PathQueryOptionsFilter(); |
| buildCounterPathQueryOptionsFilter++; |
| if (buildCounterPathQueryOptionsFilter < 3) { |
| o.filter = 'foo'; |
| o.match = 'foo'; |
| o.values = buildUnnamed4940(); |
| } |
| buildCounterPathQueryOptionsFilter--; |
| return o; |
| } |
| |
| void checkPathQueryOptionsFilter(api.PathQueryOptionsFilter o) { |
| buildCounterPathQueryOptionsFilter++; |
| if (buildCounterPathQueryOptionsFilter < 3) { |
| unittest.expect(o.filter, unittest.equals('foo')); |
| unittest.expect(o.match, unittest.equals('foo')); |
| checkUnnamed4940(o.values); |
| } |
| buildCounterPathQueryOptionsFilter--; |
| } |
| |
| core.int buildCounterQuery = 0; |
| api.Query buildQuery() { |
| var o = api.Query(); |
| buildCounterQuery++; |
| if (buildCounterQuery < 3) { |
| o.kind = 'foo'; |
| o.metadata = buildQueryMetadata(); |
| o.params = buildParameters(); |
| o.queryId = 'foo'; |
| o.reportDataEndTimeMs = 'foo'; |
| o.reportDataStartTimeMs = 'foo'; |
| o.schedule = buildQuerySchedule(); |
| o.timezoneCode = 'foo'; |
| } |
| buildCounterQuery--; |
| return o; |
| } |
| |
| void checkQuery(api.Query o) { |
| buildCounterQuery++; |
| if (buildCounterQuery < 3) { |
| unittest.expect(o.kind, unittest.equals('foo')); |
| checkQueryMetadata(o.metadata); |
| checkParameters(o.params); |
| unittest.expect(o.queryId, unittest.equals('foo')); |
| unittest.expect(o.reportDataEndTimeMs, unittest.equals('foo')); |
| unittest.expect(o.reportDataStartTimeMs, unittest.equals('foo')); |
| checkQuerySchedule(o.schedule); |
| unittest.expect(o.timezoneCode, unittest.equals('foo')); |
| } |
| buildCounterQuery--; |
| } |
| |
| core.List<core.String> buildUnnamed4941() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4941(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.int buildCounterQueryMetadata = 0; |
| api.QueryMetadata buildQueryMetadata() { |
| var o = api.QueryMetadata(); |
| buildCounterQueryMetadata++; |
| if (buildCounterQueryMetadata < 3) { |
| o.dataRange = 'foo'; |
| o.format = 'foo'; |
| o.googleCloudStoragePathForLatestReport = 'foo'; |
| o.googleDrivePathForLatestReport = 'foo'; |
| o.latestReportRunTimeMs = 'foo'; |
| o.locale = 'foo'; |
| o.reportCount = 42; |
| o.running = true; |
| o.sendNotification = true; |
| o.shareEmailAddress = buildUnnamed4941(); |
| o.title = 'foo'; |
| } |
| buildCounterQueryMetadata--; |
| return o; |
| } |
| |
| void checkQueryMetadata(api.QueryMetadata o) { |
| buildCounterQueryMetadata++; |
| if (buildCounterQueryMetadata < 3) { |
| unittest.expect(o.dataRange, unittest.equals('foo')); |
| unittest.expect(o.format, unittest.equals('foo')); |
| unittest.expect( |
| o.googleCloudStoragePathForLatestReport, unittest.equals('foo')); |
| unittest.expect(o.googleDrivePathForLatestReport, unittest.equals('foo')); |
| unittest.expect(o.latestReportRunTimeMs, unittest.equals('foo')); |
| unittest.expect(o.locale, unittest.equals('foo')); |
| unittest.expect(o.reportCount, unittest.equals(42)); |
| unittest.expect(o.running, unittest.isTrue); |
| unittest.expect(o.sendNotification, unittest.isTrue); |
| checkUnnamed4941(o.shareEmailAddress); |
| unittest.expect(o.title, unittest.equals('foo')); |
| } |
| buildCounterQueryMetadata--; |
| } |
| |
| core.int buildCounterQuerySchedule = 0; |
| api.QuerySchedule buildQuerySchedule() { |
| var o = api.QuerySchedule(); |
| buildCounterQuerySchedule++; |
| if (buildCounterQuerySchedule < 3) { |
| o.endTimeMs = 'foo'; |
| o.frequency = 'foo'; |
| o.nextRunMinuteOfDay = 42; |
| o.nextRunTimezoneCode = 'foo'; |
| o.startTimeMs = 'foo'; |
| } |
| buildCounterQuerySchedule--; |
| return o; |
| } |
| |
| void checkQuerySchedule(api.QuerySchedule o) { |
| buildCounterQuerySchedule++; |
| if (buildCounterQuerySchedule < 3) { |
| unittest.expect(o.endTimeMs, unittest.equals('foo')); |
| unittest.expect(o.frequency, unittest.equals('foo')); |
| unittest.expect(o.nextRunMinuteOfDay, unittest.equals(42)); |
| unittest.expect(o.nextRunTimezoneCode, unittest.equals('foo')); |
| unittest.expect(o.startTimeMs, unittest.equals('foo')); |
| } |
| buildCounterQuerySchedule--; |
| } |
| |
| core.int buildCounterReport = 0; |
| api.Report buildReport() { |
| var o = api.Report(); |
| buildCounterReport++; |
| if (buildCounterReport < 3) { |
| o.key = buildReportKey(); |
| o.metadata = buildReportMetadata(); |
| o.params = buildParameters(); |
| } |
| buildCounterReport--; |
| return o; |
| } |
| |
| void checkReport(api.Report o) { |
| buildCounterReport++; |
| if (buildCounterReport < 3) { |
| checkReportKey(o.key); |
| checkReportMetadata(o.metadata); |
| checkParameters(o.params); |
| } |
| buildCounterReport--; |
| } |
| |
| core.int buildCounterReportFailure = 0; |
| api.ReportFailure buildReportFailure() { |
| var o = api.ReportFailure(); |
| buildCounterReportFailure++; |
| if (buildCounterReportFailure < 3) { |
| o.errorCode = 'foo'; |
| } |
| buildCounterReportFailure--; |
| return o; |
| } |
| |
| void checkReportFailure(api.ReportFailure o) { |
| buildCounterReportFailure++; |
| if (buildCounterReportFailure < 3) { |
| unittest.expect(o.errorCode, unittest.equals('foo')); |
| } |
| buildCounterReportFailure--; |
| } |
| |
| core.int buildCounterReportKey = 0; |
| api.ReportKey buildReportKey() { |
| var o = api.ReportKey(); |
| buildCounterReportKey++; |
| if (buildCounterReportKey < 3) { |
| o.queryId = 'foo'; |
| o.reportId = 'foo'; |
| } |
| buildCounterReportKey--; |
| return o; |
| } |
| |
| void checkReportKey(api.ReportKey o) { |
| buildCounterReportKey++; |
| if (buildCounterReportKey < 3) { |
| unittest.expect(o.queryId, unittest.equals('foo')); |
| unittest.expect(o.reportId, unittest.equals('foo')); |
| } |
| buildCounterReportKey--; |
| } |
| |
| core.int buildCounterReportMetadata = 0; |
| api.ReportMetadata buildReportMetadata() { |
| var o = api.ReportMetadata(); |
| buildCounterReportMetadata++; |
| if (buildCounterReportMetadata < 3) { |
| o.googleCloudStoragePath = 'foo'; |
| o.reportDataEndTimeMs = 'foo'; |
| o.reportDataStartTimeMs = 'foo'; |
| o.status = buildReportStatus(); |
| } |
| buildCounterReportMetadata--; |
| return o; |
| } |
| |
| void checkReportMetadata(api.ReportMetadata o) { |
| buildCounterReportMetadata++; |
| if (buildCounterReportMetadata < 3) { |
| unittest.expect(o.googleCloudStoragePath, unittest.equals('foo')); |
| unittest.expect(o.reportDataEndTimeMs, unittest.equals('foo')); |
| unittest.expect(o.reportDataStartTimeMs, unittest.equals('foo')); |
| checkReportStatus(o.status); |
| } |
| buildCounterReportMetadata--; |
| } |
| |
| core.int buildCounterReportStatus = 0; |
| api.ReportStatus buildReportStatus() { |
| var o = api.ReportStatus(); |
| buildCounterReportStatus++; |
| if (buildCounterReportStatus < 3) { |
| o.failure = buildReportFailure(); |
| o.finishTimeMs = 'foo'; |
| o.format = 'foo'; |
| o.state = 'foo'; |
| } |
| buildCounterReportStatus--; |
| return o; |
| } |
| |
| void checkReportStatus(api.ReportStatus o) { |
| buildCounterReportStatus++; |
| if (buildCounterReportStatus < 3) { |
| checkReportFailure(o.failure); |
| unittest.expect(o.finishTimeMs, unittest.equals('foo')); |
| unittest.expect(o.format, unittest.equals('foo')); |
| unittest.expect(o.state, unittest.equals('foo')); |
| } |
| buildCounterReportStatus--; |
| } |
| |
| core.List<core.String> buildUnnamed4942() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4942(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.int buildCounterRowStatus = 0; |
| api.RowStatus buildRowStatus() { |
| var o = api.RowStatus(); |
| buildCounterRowStatus++; |
| if (buildCounterRowStatus < 3) { |
| o.changed = true; |
| o.entityId = 'foo'; |
| o.entityName = 'foo'; |
| o.errors = buildUnnamed4942(); |
| o.persisted = true; |
| o.rowNumber = 42; |
| } |
| buildCounterRowStatus--; |
| return o; |
| } |
| |
| void checkRowStatus(api.RowStatus o) { |
| buildCounterRowStatus++; |
| if (buildCounterRowStatus < 3) { |
| unittest.expect(o.changed, unittest.isTrue); |
| unittest.expect(o.entityId, unittest.equals('foo')); |
| unittest.expect(o.entityName, unittest.equals('foo')); |
| checkUnnamed4942(o.errors); |
| unittest.expect(o.persisted, unittest.isTrue); |
| unittest.expect(o.rowNumber, unittest.equals(42)); |
| } |
| buildCounterRowStatus--; |
| } |
| |
| core.List<api.DisjunctiveMatchStatement> buildUnnamed4943() { |
| var o = <api.DisjunctiveMatchStatement>[]; |
| o.add(buildDisjunctiveMatchStatement()); |
| o.add(buildDisjunctiveMatchStatement()); |
| return o; |
| } |
| |
| void checkUnnamed4943(core.List<api.DisjunctiveMatchStatement> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkDisjunctiveMatchStatement(o[0]); |
| checkDisjunctiveMatchStatement(o[1]); |
| } |
| |
| core.int buildCounterRule = 0; |
| api.Rule buildRule() { |
| var o = api.Rule(); |
| buildCounterRule++; |
| if (buildCounterRule < 3) { |
| o.disjunctiveMatchStatements = buildUnnamed4943(); |
| o.name = 'foo'; |
| } |
| buildCounterRule--; |
| return o; |
| } |
| |
| void checkRule(api.Rule o) { |
| buildCounterRule++; |
| if (buildCounterRule < 3) { |
| checkUnnamed4943(o.disjunctiveMatchStatements); |
| unittest.expect(o.name, unittest.equals('foo')); |
| } |
| buildCounterRule--; |
| } |
| |
| core.int buildCounterRunQueryRequest = 0; |
| api.RunQueryRequest buildRunQueryRequest() { |
| var o = api.RunQueryRequest(); |
| buildCounterRunQueryRequest++; |
| if (buildCounterRunQueryRequest < 3) { |
| o.dataRange = 'foo'; |
| o.reportDataEndTimeMs = 'foo'; |
| o.reportDataStartTimeMs = 'foo'; |
| o.timezoneCode = 'foo'; |
| } |
| buildCounterRunQueryRequest--; |
| return o; |
| } |
| |
| void checkRunQueryRequest(api.RunQueryRequest o) { |
| buildCounterRunQueryRequest++; |
| if (buildCounterRunQueryRequest < 3) { |
| unittest.expect(o.dataRange, unittest.equals('foo')); |
| unittest.expect(o.reportDataEndTimeMs, unittest.equals('foo')); |
| unittest.expect(o.reportDataStartTimeMs, unittest.equals('foo')); |
| unittest.expect(o.timezoneCode, unittest.equals('foo')); |
| } |
| buildCounterRunQueryRequest--; |
| } |
| |
| core.int buildCounterUploadLineItemsRequest = 0; |
| api.UploadLineItemsRequest buildUploadLineItemsRequest() { |
| var o = api.UploadLineItemsRequest(); |
| buildCounterUploadLineItemsRequest++; |
| if (buildCounterUploadLineItemsRequest < 3) { |
| o.dryRun = true; |
| o.format = 'foo'; |
| o.lineItems = 'foo'; |
| } |
| buildCounterUploadLineItemsRequest--; |
| return o; |
| } |
| |
| void checkUploadLineItemsRequest(api.UploadLineItemsRequest o) { |
| buildCounterUploadLineItemsRequest++; |
| if (buildCounterUploadLineItemsRequest < 3) { |
| unittest.expect(o.dryRun, unittest.isTrue); |
| unittest.expect(o.format, unittest.equals('foo')); |
| unittest.expect(o.lineItems, unittest.equals('foo')); |
| } |
| buildCounterUploadLineItemsRequest--; |
| } |
| |
| core.int buildCounterUploadLineItemsResponse = 0; |
| api.UploadLineItemsResponse buildUploadLineItemsResponse() { |
| var o = api.UploadLineItemsResponse(); |
| buildCounterUploadLineItemsResponse++; |
| if (buildCounterUploadLineItemsResponse < 3) { |
| o.uploadStatus = buildUploadStatus(); |
| } |
| buildCounterUploadLineItemsResponse--; |
| return o; |
| } |
| |
| void checkUploadLineItemsResponse(api.UploadLineItemsResponse o) { |
| buildCounterUploadLineItemsResponse++; |
| if (buildCounterUploadLineItemsResponse < 3) { |
| checkUploadStatus(o.uploadStatus); |
| } |
| buildCounterUploadLineItemsResponse--; |
| } |
| |
| core.List<core.String> buildUnnamed4944() { |
| var o = <core.String>[]; |
| o.add('foo'); |
| o.add('foo'); |
| return o; |
| } |
| |
| void checkUnnamed4944(core.List<core.String> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| unittest.expect(o[0], unittest.equals('foo')); |
| unittest.expect(o[1], unittest.equals('foo')); |
| } |
| |
| core.List<api.RowStatus> buildUnnamed4945() { |
| var o = <api.RowStatus>[]; |
| o.add(buildRowStatus()); |
| o.add(buildRowStatus()); |
| return o; |
| } |
| |
| void checkUnnamed4945(core.List<api.RowStatus> o) { |
| unittest.expect(o, unittest.hasLength(2)); |
| checkRowStatus(o[0]); |
| checkRowStatus(o[1]); |
| } |
| |
| core.int buildCounterUploadStatus = 0; |
| api.UploadStatus buildUploadStatus() { |
| var o = api.UploadStatus(); |
| buildCounterUploadStatus++; |
| if (buildCounterUploadStatus < 3) { |
| o.errors = buildUnnamed4944(); |
| o.rowStatus = buildUnnamed4945(); |
| } |
| buildCounterUploadStatus--; |
| return o; |
| } |
| |
| void checkUploadStatus(api.UploadStatus o) { |
| buildCounterUploadStatus++; |
| if (buildCounterUploadStatus < 3) { |
| checkUnnamed4944(o.errors); |
| checkUnnamed4945(o.rowStatus); |
| } |
| buildCounterUploadStatus--; |
| } |
| |
| void main() { |
| unittest.group('obj-schema-ChannelGrouping', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildChannelGrouping(); |
| var od = api.ChannelGrouping.fromJson(o.toJson()); |
| checkChannelGrouping(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-DisjunctiveMatchStatement', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildDisjunctiveMatchStatement(); |
| var od = api.DisjunctiveMatchStatement.fromJson(o.toJson()); |
| checkDisjunctiveMatchStatement(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-DownloadLineItemsRequest', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildDownloadLineItemsRequest(); |
| var od = api.DownloadLineItemsRequest.fromJson(o.toJson()); |
| checkDownloadLineItemsRequest(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-DownloadLineItemsResponse', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildDownloadLineItemsResponse(); |
| var od = api.DownloadLineItemsResponse.fromJson(o.toJson()); |
| checkDownloadLineItemsResponse(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-DownloadRequest', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildDownloadRequest(); |
| var od = api.DownloadRequest.fromJson(o.toJson()); |
| checkDownloadRequest(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-DownloadResponse', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildDownloadResponse(); |
| var od = api.DownloadResponse.fromJson(o.toJson()); |
| checkDownloadResponse(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-EventFilter', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildEventFilter(); |
| var od = api.EventFilter.fromJson(o.toJson()); |
| checkEventFilter(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-FilterPair', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildFilterPair(); |
| var od = api.FilterPair.fromJson(o.toJson()); |
| checkFilterPair(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-ListQueriesResponse', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildListQueriesResponse(); |
| var od = api.ListQueriesResponse.fromJson(o.toJson()); |
| checkListQueriesResponse(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-ListReportsResponse', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildListReportsResponse(); |
| var od = api.ListReportsResponse.fromJson(o.toJson()); |
| checkListReportsResponse(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-Options', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildOptions(); |
| var od = api.Options.fromJson(o.toJson()); |
| checkOptions(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-Parameters', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildParameters(); |
| var od = api.Parameters.fromJson(o.toJson()); |
| checkParameters(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-PathFilter', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildPathFilter(); |
| var od = api.PathFilter.fromJson(o.toJson()); |
| checkPathFilter(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-PathQueryOptions', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildPathQueryOptions(); |
| var od = api.PathQueryOptions.fromJson(o.toJson()); |
| checkPathQueryOptions(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-PathQueryOptionsFilter', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildPathQueryOptionsFilter(); |
| var od = api.PathQueryOptionsFilter.fromJson(o.toJson()); |
| checkPathQueryOptionsFilter(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-Query', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildQuery(); |
| var od = api.Query.fromJson(o.toJson()); |
| checkQuery(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-QueryMetadata', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildQueryMetadata(); |
| var od = api.QueryMetadata.fromJson(o.toJson()); |
| checkQueryMetadata(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-QuerySchedule', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildQuerySchedule(); |
| var od = api.QuerySchedule.fromJson(o.toJson()); |
| checkQuerySchedule(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-Report', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildReport(); |
| var od = api.Report.fromJson(o.toJson()); |
| checkReport(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-ReportFailure', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildReportFailure(); |
| var od = api.ReportFailure.fromJson(o.toJson()); |
| checkReportFailure(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-ReportKey', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildReportKey(); |
| var od = api.ReportKey.fromJson(o.toJson()); |
| checkReportKey(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-ReportMetadata', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildReportMetadata(); |
| var od = api.ReportMetadata.fromJson(o.toJson()); |
| checkReportMetadata(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-ReportStatus', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildReportStatus(); |
| var od = api.ReportStatus.fromJson(o.toJson()); |
| checkReportStatus(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-RowStatus', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildRowStatus(); |
| var od = api.RowStatus.fromJson(o.toJson()); |
| checkRowStatus(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-Rule', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildRule(); |
| var od = api.Rule.fromJson(o.toJson()); |
| checkRule(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-RunQueryRequest', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildRunQueryRequest(); |
| var od = api.RunQueryRequest.fromJson(o.toJson()); |
| checkRunQueryRequest(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-UploadLineItemsRequest', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildUploadLineItemsRequest(); |
| var od = api.UploadLineItemsRequest.fromJson(o.toJson()); |
| checkUploadLineItemsRequest(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-UploadLineItemsResponse', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildUploadLineItemsResponse(); |
| var od = api.UploadLineItemsResponse.fromJson(o.toJson()); |
| checkUploadLineItemsResponse(od); |
| }); |
| }); |
| |
| unittest.group('obj-schema-UploadStatus', () { |
| unittest.test('to-json--from-json', () { |
| var o = buildUploadStatus(); |
| var od = api.UploadStatus.fromJson(o.toJson()); |
| checkUploadStatus(od); |
| }); |
| }); |
| |
| unittest.group('resource-LineitemsResourceApi', () { |
| unittest.test('method--downloadlineitems', () { |
| var mock = HttpServerMock(); |
| api.LineitemsResourceApi res = |
| api.DoubleclickbidmanagerApi(mock).lineitems; |
| var arg_request = buildDownloadLineItemsRequest(); |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var obj = api.DownloadLineItemsRequest.fromJson(json); |
| checkDownloadLineItemsRequest(obj); |
| |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("lineitems/downloadlineitems")); |
| pathOffset += 27; |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = convert.json.encode(buildDownloadLineItemsResponse()); |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .downloadlineitems(arg_request, $fields: arg_$fields) |
| .then(unittest.expectAsync1(((response) { |
| checkDownloadLineItemsResponse(response); |
| }))); |
| }); |
| |
| unittest.test('method--uploadlineitems', () { |
| var mock = HttpServerMock(); |
| api.LineitemsResourceApi res = |
| api.DoubleclickbidmanagerApi(mock).lineitems; |
| var arg_request = buildUploadLineItemsRequest(); |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var obj = api.UploadLineItemsRequest.fromJson(json); |
| checkUploadLineItemsRequest(obj); |
| |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 25), |
| unittest.equals("lineitems/uploadlineitems")); |
| pathOffset += 25; |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = convert.json.encode(buildUploadLineItemsResponse()); |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .uploadlineitems(arg_request, $fields: arg_$fields) |
| .then(unittest.expectAsync1(((response) { |
| checkUploadLineItemsResponse(response); |
| }))); |
| }); |
| }); |
| |
| unittest.group('resource-QueriesResourceApi', () { |
| unittest.test('method--createquery', () { |
| var mock = HttpServerMock(); |
| api.QueriesResourceApi res = api.DoubleclickbidmanagerApi(mock).queries; |
| var arg_request = buildQuery(); |
| var arg_asynchronous = true; |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var obj = api.Query.fromJson(json); |
| checkQuery(obj); |
| |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 5), |
| unittest.equals("query")); |
| pathOffset += 5; |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(queryMap["asynchronous"].first, |
| unittest.equals("$arg_asynchronous")); |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = convert.json.encode(buildQuery()); |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .createquery(arg_request, |
| asynchronous: arg_asynchronous, $fields: arg_$fields) |
| .then(unittest.expectAsync1(((response) { |
| checkQuery(response); |
| }))); |
| }); |
| |
| unittest.test('method--deletequery', () { |
| var mock = HttpServerMock(); |
| api.QueriesResourceApi res = api.DoubleclickbidmanagerApi(mock).queries; |
| var arg_queryId = 'foo'; |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 6), |
| unittest.equals("query/")); |
| pathOffset += 6; |
| subPart = core.Uri.decodeQueryComponent(path.substring(pathOffset)); |
| pathOffset = path.length; |
| unittest.expect(subPart, unittest.equals('$arg_queryId')); |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = ''; |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .deletequery(arg_queryId, $fields: arg_$fields) |
| .then(unittest.expectAsync1((_) {})); |
| }); |
| |
| unittest.test('method--getquery', () { |
| var mock = HttpServerMock(); |
| api.QueriesResourceApi res = api.DoubleclickbidmanagerApi(mock).queries; |
| var arg_queryId = 'foo'; |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 6), |
| unittest.equals("query/")); |
| pathOffset += 6; |
| subPart = core.Uri.decodeQueryComponent(path.substring(pathOffset)); |
| pathOffset = path.length; |
| unittest.expect(subPart, unittest.equals('$arg_queryId')); |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = convert.json.encode(buildQuery()); |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .getquery(arg_queryId, $fields: arg_$fields) |
| .then(unittest.expectAsync1(((response) { |
| checkQuery(response); |
| }))); |
| }); |
| |
| unittest.test('method--listqueries', () { |
| var mock = HttpServerMock(); |
| api.QueriesResourceApi res = api.DoubleclickbidmanagerApi(mock).queries; |
| var arg_pageSize = 42; |
| var arg_pageToken = 'foo'; |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 7), |
| unittest.equals("queries")); |
| pathOffset += 7; |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(core.int.parse(queryMap["pageSize"].first), |
| unittest.equals(arg_pageSize)); |
| unittest.expect( |
| queryMap["pageToken"].first, unittest.equals(arg_pageToken)); |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = convert.json.encode(buildListQueriesResponse()); |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .listqueries( |
| pageSize: arg_pageSize, |
| pageToken: arg_pageToken, |
| $fields: arg_$fields) |
| .then(unittest.expectAsync1(((response) { |
| checkListQueriesResponse(response); |
| }))); |
| }); |
| |
| unittest.test('method--runquery', () { |
| var mock = HttpServerMock(); |
| api.QueriesResourceApi res = api.DoubleclickbidmanagerApi(mock).queries; |
| var arg_request = buildRunQueryRequest(); |
| var arg_queryId = 'foo'; |
| var arg_asynchronous = true; |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var obj = api.RunQueryRequest.fromJson(json); |
| checkRunQueryRequest(obj); |
| |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 6), |
| unittest.equals("query/")); |
| pathOffset += 6; |
| subPart = core.Uri.decodeQueryComponent(path.substring(pathOffset)); |
| pathOffset = path.length; |
| unittest.expect(subPart, unittest.equals('$arg_queryId')); |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(queryMap["asynchronous"].first, |
| unittest.equals("$arg_asynchronous")); |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = ''; |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .runquery(arg_request, arg_queryId, |
| asynchronous: arg_asynchronous, $fields: arg_$fields) |
| .then(unittest.expectAsync1((_) {})); |
| }); |
| }); |
| |
| unittest.group('resource-ReportsResourceApi', () { |
| unittest.test('method--listreports', () { |
| var mock = HttpServerMock(); |
| api.ReportsResourceApi res = api.DoubleclickbidmanagerApi(mock).reports; |
| var arg_queryId = 'foo'; |
| var arg_pageSize = 42; |
| var arg_pageToken = 'foo'; |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 8), |
| unittest.equals("queries/")); |
| pathOffset += 8; |
| index = path.indexOf('/reports', pathOffset); |
| unittest.expect(index >= 0, unittest.isTrue); |
| subPart = |
| core.Uri.decodeQueryComponent(path.substring(pathOffset, index)); |
| pathOffset = index; |
| unittest.expect(subPart, unittest.equals('$arg_queryId')); |
| unittest.expect(path.substring(pathOffset, pathOffset + 8), |
| unittest.equals("/reports")); |
| pathOffset += 8; |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(core.int.parse(queryMap["pageSize"].first), |
| unittest.equals(arg_pageSize)); |
| unittest.expect( |
| queryMap["pageToken"].first, unittest.equals(arg_pageToken)); |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = convert.json.encode(buildListReportsResponse()); |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .listreports(arg_queryId, |
| pageSize: arg_pageSize, |
| pageToken: arg_pageToken, |
| $fields: arg_$fields) |
| .then(unittest.expectAsync1(((response) { |
| checkListReportsResponse(response); |
| }))); |
| }); |
| }); |
| |
| unittest.group('resource-SdfResourceApi', () { |
| unittest.test('method--download', () { |
| var mock = HttpServerMock(); |
| api.SdfResourceApi res = api.DoubleclickbidmanagerApi(mock).sdf; |
| var arg_request = buildDownloadRequest(); |
| var arg_$fields = 'foo'; |
| mock.register(unittest.expectAsync2((http.BaseRequest req, json) { |
| var obj = api.DownloadRequest.fromJson(json); |
| checkDownloadRequest(obj); |
| |
| var path = (req.url).path; |
| var pathOffset = 0; |
| core.int index; |
| core.String subPart; |
| unittest.expect( |
| path.substring(pathOffset, pathOffset + 1), unittest.equals("/")); |
| pathOffset += 1; |
| unittest.expect(path.substring(pathOffset, pathOffset + 27), |
| unittest.equals("doubleclickbidmanager/v1.1/")); |
| pathOffset += 27; |
| unittest.expect(path.substring(pathOffset, pathOffset + 12), |
| unittest.equals("sdf/download")); |
| pathOffset += 12; |
| |
| var query = (req.url).query; |
| var queryOffset = 0; |
| var queryMap = <core.String, core.List<core.String>>{}; |
| void addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| |
| if (query.isNotEmpty) { |
| for (var part in query.split('&')) { |
| var keyValue = part.split('='); |
| addQueryParam( |
| core.Uri.decodeQueryComponent(keyValue[0]), |
| core.Uri.decodeQueryComponent(keyValue[1]), |
| ); |
| } |
| } |
| unittest.expect(queryMap["fields"].first, unittest.equals(arg_$fields)); |
| |
| var h = { |
| 'content-type': 'application/json; charset=utf-8', |
| }; |
| var resp = convert.json.encode(buildDownloadResponse()); |
| return async.Future.value(stringResponse(200, h, resp)); |
| }), true); |
| res |
| .download(arg_request, $fields: arg_$fields) |
| .then(unittest.expectAsync1(((response) { |
| checkDownloadResponse(response); |
| }))); |
| }); |
| }); |
| } |