blob: d942c3ae8f120458bc70298edfc39ac65caa6add [file] [log] [blame] [edit]
# 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 fuzzy_check import FuzzyCheck
from validators import *
# originally generated gestures:
# FlingStop
# Scroll d=862.4 x=4 y=859 r=7.033 s=2031
# Scroll d=11 x=1 y=10 r=0.4407 s=167.7
# Fling d=0 x=0 y=0 r=0 s=0
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
for rawitem in raw['entries']:
if rawitem['type'] == 'gesture' and rawitem['gestureType'] == 'scroll':
dy = rawitem['dy']
if dy > 0:
return False, 'Has reverse scroll'
return True, 'Success'