blob: 1e5f4ec0985e410e561ae177a412337252acde7b [file] [log] [blame]
// Copyright 2017 Google Inc. All Rights Reserved.
//
// 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 'dart:convert' show json;
import 'package:sync_http/sync_http.dart';
import 'exception.dart' show W3cWebDriverException;
/// Handles responses from the W3C protocol.
dynamic processW3cResponse(SyncHttpClientResponse response, bool value) {
Map responseBody;
try {
responseBody = json.decode(response.body);
} catch (e) {}
if (response.statusCode < 200 || response.statusCode > 299) {
throw new W3cWebDriverException(
httpStatusCode: response.statusCode, jsonResp: responseBody);
}
if (value && responseBody is Map) {
return responseBody['value'];
}
return responseBody;
}