blob: 906d2b06ac9370568b6fab2c1b18d5aecfda86cb [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 __future__ import absolute_import
from __future__ import division
from __future__ import print_function
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("== 2.297 ~ 0.5"),
]
fuzzy.unexpected = [
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)