• Home
  • History
  • Annotate
  • only in /external/autotest/client/common_lib/cros/fake_device_server/
NameDateSize

..23-Aug-20164 KiB

__init__.py23-Aug-20160

client_lib/23-Aug-20164 KiB

commands.py23-Aug-20165.9 KiB

commands_unittest.py23-Aug-20164.6 KiB

common.py23-Aug-2016361

common_util.py23-Aug-20163 KiB

common_util_unittest.py23-Aug-20162.7 KiB

constants.py23-Aug-2016344

devices.py23-Aug-20167.3 KiB

devices_unittest.py23-Aug-20163.5 KiB

fail_control.py23-Aug-20161.5 KiB

fake_gcd_helper.py23-Aug-20161.6 KiB

fake_oauth.py23-Aug-2016385

meta_handler.py23-Aug-2016787

oauth.py23-Aug-20163.7 KiB

README23-Aug-20161.2 KiB

registration_tickets.py23-Aug-20167.4 KiB

registration_tickets_unittest.py23-Aug-20164.7 KiB

resource_delegate.py23-Aug-20164 KiB

resource_method.py23-Aug-20161.9 KiB

resource_method_unittest.py23-Aug-20162.2 KiB

server.py23-Aug-20163.8 KiB

server_errors.py23-Aug-2016654

README

1# Copyright 2014 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5A simple web service used by Buffet to test interactions with a
6device server. Implements basic functionality for registration, device commands
7and state changes.
8
9To start the test server yourself, run server.py. Otherwise, server.py exposes
10start_server/stop_server methods.
11
12To test locally:
13./server.py
14
15# Register a device.
16curl -X POST -d "" http://localhost:8080/registrationTickets
17curl -X PATCH  -d '{"userEmail": "me"}' -H "Authorization: Bearer 1/TEST-ME" \
18    http://localhost:8080/registrationTickets/<id>
19curl -X POST -d "" \
20    http://localhost:8080/registrationTickets/<id>/finalize
21
22# List devices
23curl -X GET -d "" http://localhost:8080/devices
24
25# Send your device a command.
26curl -X POST -d '{"base": { "Reboot": {}}' http://localhost:8080/devices\
27  ?deviceId=<device_id>
28
29# Update the status of your command
30curl -X PATCH -d '{"state": "done"}' http://localhost:8080/devices/\
31    <command_id>
32
33# You can also use the client library avaiable @ client_lib.
34# Check out client_lib_test to see how you can use the API.
35