| # Copyright (c) 2013 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: |
| # FlingStop |
| # Motion d=64.08 x=24.04 y=57.22 r=0.189 |
| # FlingStop |
| # Motion d=20.26 x=6.965 y=17.74 r=0.1085 |
| |
| def Validate(raw, events, gestures): |
| fuzzy = FuzzyCheck() |
| fuzzy.expected = [ |
| ScrollValidator(">10", merge=True), |
| ] |
| fuzzy.unexpected = [ |
| FlingStopValidator("<10"), |
| FlingValidator(), |
| ] |
| return fuzzy.Check(gestures) |