• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5AUTHOR = 'avakulenko, wiley, keybuk'
6NAME = 'buffet_WebServerSanity'
7TIME = 'FAST'
8TEST_TYPE = 'Server'
9ATTRIBUTES = "suite:tendo_experimental"
10
11DOC = """
12This test verifies that the web server running on the device responds to simple
13HTTP requests at http://<ip>:8080/privet/ping URL and returns the expected
14payload. This verifies the web server operation as well as the firewall to
15make sure the TCP port is open and accessible from outside.
16
17"""
18
19def run(machine):
20    job.run_test('buffet_WebServerSanity',
21                 host=hosts.create_host(machine))
22
23
24parallel_simple(run, machines)
25