Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(596)

Unified Diff: test/test_model.js

Issue 8824044: Handle service life
Patch Set: Handle service life Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/test_fakebackend.js ('k') | test/test_model_handlers.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test_model.js
=== modified file 'test/test_model.js'
--- test/test_model.js 2013-04-12 22:57:49 +0000
+++ test/test_model.js 2013-04-17 13:28:40 +0000
@@ -643,3 +643,39 @@
instance.get('recent_commit_count').should.equal(3);
});
});
+
+
+describe('service models', function() {
+ var models, list, django, rails, mysql;
+
+ before(function(done) {
+ YUI(GlobalConfig).use(['juju-models'], function(Y) {
+ models = Y.namespace('juju.models');
+ done();
+ });
+ });
+
+ beforeEach(function() {
+ django = new models.Service({id: 'django'});
+ rails = new models.Service({id: 'rails', life: 'dying'});
+ mysql = new models.Service({id: 'mysql', life: 'dead'});
+ list = new models.ServiceList({items: [rails, django, mysql]});
+ });
+
+ it('instances identify if they are alive', function() {
+ // This test also verifies that the default state is "alive".
+ assert.isTrue(django.isAlive());
+ });
+
+ it('instances identify if they are not alive (dying or dead)', function() {
+ assert.isFalse(rails.isAlive());
+ assert.isFalse(mysql.isAlive());
+ });
+
+ it('can be filtered so that it returns only alive models', function() {
+ var filtered = list.alive();
+ assert.strictEqual(1, filtered.size());
+ assert.deepEqual([django], filtered.toArray());
+ });
+
+});
« no previous file with comments | « test/test_fakebackend.js ('k') | test/test_model_handlers.js » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b