Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround to allow e2e tests #5

Merged
merged 2 commits into from
Jul 16, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions app/js/timer.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ angular.module('timer', [])

function resetTimeout() {
if ($scope.timeoutId) {
$timeout.cancel($scope.timeoutId);
clearTimeout($scope.timeoutId);
}
}

Expand All @@ -49,7 +49,7 @@ angular.module('timer', [])

$scope.stop = $element[0].stop = function () {
$scope.stoppedTime = new Date();
$timeout.cancel($scope.timeoutId);
clearTimeout($scope.timeoutId);
$scope.timeoutId = null;
};

Expand All @@ -74,9 +74,16 @@ angular.module('timer', [])
$scope.seconds = Math.floor(($scope.millis / 1000) % 60);
$scope.minutes = Math.floor((($scope.millis / (1000 * 60)) % 60));
$scope.hours = Math.floor((($scope.millis / (1000 * 60 * 60)) % 24));
$scope.timeoutId = $timeout(function () {
// Workaround to allow e2e tests ,we can't use $timout which make the
// e2e to hang
$scope.timeoutId = setTimeout(function() {
tick();
$scope.$apply();
}, $scope.interval);
// $scope.timeoutId = $timeout(function() {
// tick();
// //$scope.$apply();
// }, $scope.interval);

$scope.$emit('timer-tick', {timeoutId: $scope.timeoutId, millis: $scope.millis});
};
Expand Down
8 changes: 4 additions & 4 deletions config/karma-e2e.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ files = [
'test/e2e/**/*.js'
];

autoWatch = false;
autoWatch = true;

browsers = ['Chrome'];
browsers = ['Firefox'];

singleRun = true;
singleRun = false;

proxies = {
'/': 'http://localhost:8000/'
'/': 'http://localhost:8383/'
};

junitReporter = {
Expand Down
2 changes: 1 addition & 1 deletion examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ <h3>AngularJS - Polling Timers</h3>
};

$scope.$on('timer-tick', function (event, args) {
$scope.timerConsole += $scope.timerType + ' - event.name = '+ event.name + ', timeoutId = ' + args.timeoutId.$$timeoutId + ', millis = ' + args.millis +'\n';
$scope.timerConsole += $scope.timerType + ' - event.name = '+ event.name + ', timeoutId = ' + args.timeoutId + ', millis = ' + args.millis +'\n';
});
}

Expand Down
2 changes: 1 addition & 1 deletion examples/angularjs-polling-timer.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
};

$scope.$on('timer-tick', function (event, args) {
$scope.timerConsole += $scope.timerType + ' - event.name = '+ event.name + ', timeoutId = ' + args.timeoutId.$$timeoutId + ', millis = ' + args.millis +'\n';
$scope.timerConsole += $scope.timerType + ' - event.name = '+ event.name + ', timeoutId = ' + args.timeoutId + ', millis = ' + args.millis +'\n';
});
}

Expand Down
Empty file added scripts/libpeerconnection.log
Empty file.
20 changes: 15 additions & 5 deletions test/e2e/scenarios.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@
describe('timer directive', function() {

beforeEach(function() {
browser().navigateTo('../../index.html');
browser().navigateTo('angular-timer/index.html');
});

it('Simple timer', function() {
sleep(2);
var basicExample = angular.element('#timer1');
console.log('######## basicExample = ', basicExample.html());
it('should stop when user click on stop button [Simple Timer]', function() {
sleep(1);
element('#basic-timer button:last-child').click();
var oldValue = element('#basic-timer span').text();
sleep(1);
expect( element('#basic-timer span').text() ).toBe( oldValue );
});

it('should be reset when user click on start button again [Simple Timer]', function() {
sleep(1);
var oldValue = element('#basic-timer span').text();
element('#basic-timer button:nth-child(3)').click();
element('#basic-timer button:last-child').click();
expect( element('#basic-timer span').text() ).toBeLessThan( oldValue );
});

});