+ All Categories
Home > Documents > W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request...

W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request...

Date post: 17-Jun-2020
Category:
Upload: others
View: 2 times
Download: 0 times
Share this document with a friend
12
© 2017 ACCESS CO., LTD. All rights reserved. Confidential W3C Vehicle API Test Suite Development 2017/5/8 Shinjiro Urata ACCESS
Transcript
Page 1: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

© 2017 ACCESS CO., LTD. All rights reserved. Confidential

W3C Vehicle API Test Suite Development

2017/5/8 Shinjiro Urata

ACCESS

Page 2: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

© 2017 ACCESS CO., LTD. All rights reserved. Confidential

W3C SUITE

“Web Platform Test” is W3C’s standard automated test framework. * https://github.com/w3c/web-platform-tests

Page 3: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

© 2017 ACCESS CO., LTD. All rights reserved. Confidential

W3C TEST SUITE

Test result shown like this

Page 4: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved. Confidential

TEST THE WEB FORWARD

Page 5: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved. Confidential

TEST CONTENTS

Page 6: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved. Confidential

VEHICLE API CASE

Client html VISS server

Vehicel data emulator

Request JSON

Response JSON

Communication is defined in VISS

databroker

OBD2 dongle

Vehicle data source

Real vehicle is too inconvenient. Use emulator for test.

HTML5 browser

In Vehicle API (VISS), API is not implemented in a browser. But external VISS server is required. #W3C test suite expects W3C APIs to be implemented in a browser. So, Vehicel API is an exceptional case.

Page 7: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved. Confidential

TEST FRAMEWORK STRUCTURE

Test runner html UI

Testharness.js Helper library

HTML5 browser

W3C web platform test framework

Test cases for each APIs

Open Test runner UI in a browser and run the tests.

YYY API Xxx API

geolocation

WebStorage WebSocket - test01.html - test02.html

In case of standard W3C APIs, test target is implementation in browsers

Page 8: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved. Confidential

IN CASE OF VEHICLE API

Test runner html UI

Testharness.js Helper library

HTML5 browser

W3C web platform test framework

Test cases for APIs

YYY API Xxx API

geolocation

WebStorage WebSocket - test01.html - test02.html

Vehicle data source

Request JSON

Response JSON

VISS server

Requires VISS server which exists out side of test framework

VehicleAPI test

Test1.html

Test2.html

Test3.html

Setting info - VISS IP, port

Page 9: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved. Confidential

SIMPLE TEST CASE

Simple test case example(partial)

var vehicle = new WebSocket(VISS_URL);

vehicle.onopen = function() {

var reqId = "12345";

var path = "Signal.Drivetrain.Transmission.Speed";

vehicle.onmessage = t.step_func(function(event) {

var msg = JSON.parse(event.data);

var result = isGetSuccessResponse(reqId, msg);

assert_true(result, "Get method successed");

});

vehicle.send('{"action":"get","path":"'+ path

+'" ,"requestId":"'+reqId+'"}');

}

Getting vehicle speed

Send request Success if true

Page 10: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved.

Demo: run vehicle API test

Enter ‘vehicle/viss’

Page 11: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved. Confidential

SUMMARY

In case of Vehicle API, external VISS server is required and this is exceptional use of test framework. According to Test framework rule, “Test framework should be able to run standalone, should not communicate with external servers.” Although the Vehicle API test does not conform this, this is not avoidable because of VISS system structure. Because of communicating with external server via WebSocket, all the tests run asynchronously. Since the response time depends on data reception from vehicle data source, timeout time settings become difficult. (uniform time out setting may not fit to every VISS implementation and data source.) Depend on vehicle data source (real vehicle, emulator, etc.) avalable data types, range of data are different. Therefore, in this test cases, received data types, values are not verified but tested conformance of VISS communication behavior.

Page 12: W3C Vehicle API Test Suite Development · - test01.html - test02.html Vehicle data source Request JSON VISS server Requires VISS server which exists out side of test framework VehicleAPI

* © 2017 ACCESS CO., LTD. All rights reserved. Confidential

END


Recommended