Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(646)

Unified Diff: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py

Issue 2188373002: DO NOT SUBMIT bluetooth-fuzzer: Draft fuzzer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-catch-and-connect
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py
diff --git a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py
index f672744bcd813651320d8628fbb4b4e536548307..614fccc28bdc38da29bf121f8a2ac025e02a879e 100644
--- a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py
+++ b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py
@@ -34,12 +34,44 @@ def FuzzParameters(test_file_data):
constraints.GetConnectableBase,
test_file_data)
- test_file_data = FillInParameter('TRANSFORM_SERVICE_RETRIEVED_BASE',
- constraints.GetServiceRetrievedBase,
+ test_file_data = FillInParameter('TRANSFORM_SERVICES_RETRIEVED_BASE',
+ constraints.GetServicesRetrievedBase,
+ test_file_data)
+
+ test_file_data = FillInParameter('TRANSFORM_CHARACTERISTICS_RETRIEVED_BASE',
+ constraints.GetCharacteristicsRetrievedBase,
+ test_file_data)
+
+ test_file_data = FillInParameter('TRANSFORM_CATCH',
+ constraints.GetCatch,
test_file_data)
test_file_data = FillInParameter('TRANSFORM_REQUEST_DEVICE_OPTIONS',
constraints.GetRequestDeviceOptions,
test_file_data)
+ test_file_data = FillInParameter('TRANSFORM_GET_PRIMARY_SERVICES',
+ constraints.GetGetPrimaryServicesCall,
+ test_file_data)
+
+ test_file_data = FillInParameter('TRANSFORM_PICK_A_SERVICE',
+ constraints.GetPickAService,
+ test_file_data)
+
+ test_file_data = FillInParameter('TRANSFORM_GET_CHARACTERISTICS',
+ constraints.GetGetCharacteristicsCall,
+ test_file_data)
+
+ test_file_data = FillInParameter('TRANSFORM_PICK_A_CHARACTERISTIC',
+ constraints.GetPickACharacteristic,
+ test_file_data)
+
+ test_file_data = FillInParameter('TRANSFORM_WRITE_VALUE',
+ constraints.GetWriteValue,
+ test_file_data)
+
+ test_file_data = FillInParameter('TRANSFORM_RELOAD_ID',
+ constraints.GetReloadId,
+ test_file_data)
+
return test_file_data

Powered by Google App Engine
This is Rietveld 408576698