1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Module to generate a test file with random calls to the Web Bluetooth API."""
import random
from fuzzer_helpers import FillInParameter
# Contains the different types of base tokens used when generating a test case.
BASE_TOKENS = [
'TRANSFORM_BASIC_BASE',
'TRANSFORM_DEVICE_DISCOVERY_BASE',
'TRANSFORM_CONNECTABLE_BASE',
'TRANSFORM_SERVICES_RETRIEVED_BASE',
'TRANSFORM_CHARACTERISTICS_RETRIEVED_BASE',
]
# Contains strings that represent calls to the Web Bluetooth API. These
# strings can be sequentially placed together to generate sequences of
# calls to the API. These strings are separated by line and placed so
# that indentation can be performed more easily.
TOKENS = [
[
'})',
'.catch(e => console.log(e.name + \': \' + e.message))',
'.then(() => {',
],
# Request Device Tokens
[' requestDeviceWithKeyDown(TRANSFORM_REQUEST_DEVICE_OPTIONS);'],
[
' return requestDeviceWithKeyDown(TRANSFORM_REQUEST_DEVICE_OPTIONS);',
'})',
'.then(device => {',
],
# Connect Tokens
[
' device.gatt.connect();',
],
[
' return device.gatt.connect();',
'})'
'.then(gatt => {',
],
[
' gatt.connect();',
],
[
' return gatt.connect();',
'})'
'.then(gatt => {',
],
# GetPrimaryService(s) Tokens
[
' device.gatt.TRANSFORM_GET_PRIMARY_SERVICES;',
],
[
' gatt.TRANSFORM_GET_PRIMARY_SERVICES;',
],
[
' return device.gatt.TRANSFORM_GET_PRIMARY_SERVICES;',
'})'
'.then(services => {',
],
[
' return gatt.TRANSFORM_GET_PRIMARY_SERVICES;',
'})'
'.then(services => {',
],
# GetCharacteristic(s) Tokens
[
' TRANSFORM_PICK_A_SERVICE;',
' service.TRANSFORM_GET_CHARACTERISTICS;',
],
[
' TRANSFORM_PICK_A_SERVICE;',
' return service.TRANSFORM_GET_CHARACTERISTICS;',
],
# ReadValue Tokens
[
' TRANSFORM_PICK_A_CHARACTERISTIC;',
' characteristic.readValue();',
],
[
' TRANSFORM_PICK_A_CHARACTERISTIC;',
' return characteristic.readValue().then(_ => characteristics);',
'})',
'.then(characteristics => {',
],
# WriteValue Tokens
[
' TRANSFORM_PICK_A_CHARACTERISTIC;',
' characteristic.writeValue(TRANSFORM_VALUE);',
],
[
' TRANSFORM_PICK_A_CHARACTERISTIC;',
' return characteristic.writeValue(TRANSFORM_VALUE).then(_ => characteristics);',
'})',
'.then(characteristics => {',
],
# Start Notifications Tokens
[
' TRANSFORM_PICK_A_CHARACTERISTIC;',
' characteristic.startNotifications();',
],
[
' TRANSFORM_PICK_A_CHARACTERISTIC;',
' return characteristic.startNotitications().then(_ => characteristics);',
'})',
'.then(characteristics => {',
],
# Stop Notifications Tokens
[
' TRANSFORM_PICK_A_CHARACTERISTIC;',
' characteristic.stopNotifications();',
],
[
' TRANSFORM_PICK_A_CHARACTERISTIC;',
' return characteristic.stopNotitications().then(() => characteristics);',
'})',
'.then(characteristics => {',
],
# Garbage Collection
[
' runGarbageCollection();',
],
[
'})',
'.then(runGarbageCollection)',
'.then(() => {',
],
# Reload Tokens
# We generate a unique id for each reload and save it in sessionStorage.
# This ensures that the reload is only executed once and that if test cases
# share the same sessionStorage all their reloads are executed.
[
' (() => {',
' let reload_id = TRANSFORM_RELOAD_ID;',
' if (!sessionStorage.getItem(reload_id)) {',
' sessionStorage.setItem(reload_id, true);',
' location.reload();',
' }',
' })();',
],
]
INDENT = ' '
BREAK = '\n'
END_TOKEN = '});'
# Maximum number of tokens that will be inserted in the generated
# test case.
MAX_NUM_OF_TOKENS = 100
def _GenerateSequenceOfRandomTokens():
"""Generates a sequence of calls to the Web Bluetooth API.
Uses the arrays of strings in TOKENS and randomly picks a number between
[1, 100] to generate a random sequence of calls to the Web Bluetooth API,
calls to reload the page, and calls to perform garbage collection.
Returns:
A string containing a sequence of calls to the Web Bluetooth API.
"""
result = random.choice(BASE_TOKENS)
for _ in range(random.randint(1, MAX_NUM_OF_TOKENS)):
# Get random token.
token = random.choice(TOKENS)
# Indent and break line.
for line in token:
result += INDENT + line + BREAK
result += INDENT + END_TOKEN
return result
def GenerateTestFile(template_file_data):
"""Inserts a sequence of calls to the Web Bluetooth API into a template.
Args:
template_file_data: A template containing the 'TRANSFORM_RANDOM_TOKENS'
string.
Returns:
A string consisting of template_file_data with the string
'TRANSFORM_RANDOM_TOKENS' replaced with a sequence of calls to the Web
Bluetooth API and calls to reload the page and perform garbage
collection.
"""
return FillInParameter('TRANSFORM_RANDOM_TOKENS',
_GenerateSequenceOfRandomTokens, template_file_data)
|