blob: a0c95ff0bc25103c9caefa4466198f33bab48dda [file] [log] [blame]
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from fuzzy_check import FuzzyCheck
from validators import *
# originally generated gestures:
# Scroll d=78.92 x=59.87 y=46.78 r=19.35 s=2342
# Pinch dz=11.52 r=0.01303
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
PinchValidator("== 1.568 ~ 0.2"),
]
fuzzy.unexpected = [
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)