Skip to content

Instantly share code, notes, and snippets.

@c4milo
Created October 4, 2010 17:27
Show Gist options
  • Save c4milo/610106 to your computer and use it in GitHub Desktop.
Save c4milo/610106 to your computer and use it in GitHub Desktop.
module.exports = {
'should lookup a domain by id': function(assert) {
},
'should create a persistent Domain from its JSON Description': function(assert) {
},
'should return the id': function(assert) {
},
'should return the operating system type': function(assert) {
},
'should return the domain information': function(assert) {
},
'should return the name': function(assert) {
},
'should return the uuid': function(assert) {
},
'should indicate if autostart is enable': function(assert) {
},
'should enable or disable autostart': function(assert) {
},
'should return maximum amount of physical memory allocated to a domain': function(assert) {
},
'should change the maximum amount of physical memory allocated to a domain': function(assert) {
},
'should dynamically change the runtime amount of memory allocated to a domain': function(assert) {
},
'should return the maximum number of virtual CPUs supported for the guest VM': function(assert) {
},
'should indicate whether the domain is active': function(assert) {
},
'should indicate whether the domain is persistent': function(assert) {
},
'should reboot the domain': function(assert) {
},
'should save and restore the domain': function(assert) {
},
'should suspend and resume the domain': function(assert) {
},
'should shutdown the domain': function(assert) {
},
'should dynamically change the number of virtual CPUs used by the domain': function(assert) {
},
'should get information about vcpus': function(assert) {
},
'should allow to change real CPUs, which can be allocated to a virtual CPU': function(assert) {
},
'should attach a device': function(assert) {
},
'should detach a device': function(assert) {
},
'should update a device': function(assert) {
},
'should migrate a domain to another hypervisor through a hypervisor connection': function(assert) {
},
'should migrate a domain to another hypervisor through an uri': function(assert) {
},
'should set a maximum tolerable time for which the domain is allowed to be paused at the end of live migration': function(assert) {
},
'should return domain xml representation': function(assert) {
},
'should return domain json representation': function(assert) {
},
'should extract information about progress of a background job on the domain': function(assert) {
},
'should abort the current background job on the domain': function(assert) {
},
'should get the domain scheduler parameters': function(assert) {
},
'should set the domain scheduler parameters': function(assert) {
},
'should return the domain security labels': function(assert) {
},
'should save a managed image of the domain': function(assert) {
},
'should remove a managed image of the domain': function(assert) {
},
'should allow to read the domain\'s memory content and return it in a Buffer object': function(assert) {
},
'should allow to read the content of a domain\'s disk device and return it in a Buffer object': function(assert) {
},
'should return domain\'s memory statistics': function(assert) {
},
'should return block device stats for block devices attached to the domain': function(assert) {
},
'should return basic information about a domain\'s block device': function(assert) {
},
'should dump the core of a domain on a given file for analysis': function(assert) {
},
'should return network interface statistics of the domain': function(assert) {
},
'should show if the domain has a current snapshot': function(assert) {
},
'should revert the domain to a snapshot taken before': function(assert) {
},
'should take a snapshot of the domain': function(assert) {
},
'should take a snapshot of the domain using a xml domain description': function(assert) {
},
'should return information about the current domain snapshot': function(assert) {
},
'should delete a snapshot': function(assert) {
},
'should lookup a snapshot by name': function(assert) {
},
'should return all the domain snapshots': function(assert) {
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment