occi-core 4.3.6 → 5.0.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.fasterer.yml +3 -0
- data/.gitignore +9 -16
- data/.rspec +1 -1
- data/.rubocop.yml +69 -0
- data/.travis.yml +27 -0
- data/AUTHORS +8 -6
- data/CHANGELOG.md +0 -0
- data/Gemfile +1 -1
- data/LICENSE +1 -1
- data/README.md +25 -170
- data/Rakefile +25 -17
- data/examples/initialize_model.rb +10 -0
- data/examples/parse_action_instance_json.rb +15 -0
- data/examples/parse_action_instance_text.rb +15 -0
- data/examples/parse_categories_json.rb +15 -0
- data/examples/parse_categories_text.rb +15 -0
- data/examples/parse_instance_json.rb +15 -0
- data/examples/parse_instance_text.rb +15 -0
- data/examples/parse_model_json.rb +9 -0
- data/examples/parse_model_text.rb +9 -0
- data/examples/render_action_instance_json.rb +17 -0
- data/examples/render_action_instance_text.rb +17 -0
- data/examples/render_instance_json.rb +20 -0
- data/examples/render_instance_text.rb +20 -0
- data/examples/render_model_json.rb +12 -0
- data/examples/render_model_text.rb +12 -0
- data/examples/rendering/action_instance.json +6 -0
- data/examples/rendering/action_instance.txt +2 -0
- data/examples/rendering/categories.json +78 -0
- data/examples/rendering/categories.txt +4 -0
- data/examples/rendering/instance.json +70 -0
- data/examples/rendering/instance.txt +12 -0
- data/examples/rendering/model.alt.json +1716 -0
- data/examples/rendering/model.json +785 -0
- data/examples/rendering/model.txt +68 -0
- data/lib/occi/core/action.rb +12 -26
- data/lib/occi/core/action_instance.rb +109 -65
- data/lib/occi/core/attribute.rb +136 -0
- data/lib/occi/core/attribute_definition.rb +269 -0
- data/lib/occi/core/category.rb +110 -83
- data/lib/occi/core/collection.rb +255 -0
- data/lib/occi/core/constants.rb +14 -0
- data/lib/occi/core/entity.rb +301 -195
- data/lib/occi/core/errors/.gitkeep +0 -0
- data/lib/occi/core/errors/attribute_definition_error.rb +11 -0
- data/lib/occi/core/errors/attribute_validation_error.rb +13 -0
- data/lib/occi/core/errors/category_validation_error.rb +13 -0
- data/lib/occi/core/errors/collection_lookup_error.rb +11 -0
- data/lib/occi/core/errors/instance_validation_error.rb +13 -0
- data/lib/occi/core/errors/mandatory_argument_error.rb +11 -0
- data/lib/occi/core/errors/model_lookup_error.rb +11 -0
- data/lib/occi/core/errors/parser_error.rb +11 -0
- data/lib/occi/core/errors/parsing_error.rb +11 -0
- data/lib/occi/core/errors/renderer_error.rb +11 -0
- data/lib/occi/core/errors/rendering_error.rb +11 -0
- data/lib/occi/core/errors/validation_error.rb +11 -0
- data/lib/occi/core/errors.rb +9 -0
- data/lib/occi/core/helpers/.gitkeep +0 -0
- data/lib/occi/core/helpers/argument_validator.rb +27 -0
- data/lib/occi/core/helpers/attributes_accessor.rb +22 -0
- data/lib/occi/core/helpers/error_handler.rb +29 -0
- data/lib/occi/core/helpers/hash_dereferencer.rb +149 -0
- data/lib/occi/core/helpers/identifier_validator.rb +135 -0
- data/lib/occi/core/helpers/instance_attribute_resetter.rb +131 -0
- data/lib/occi/core/helpers/instance_attributes_accessor.rb +30 -0
- data/lib/occi/core/helpers/locatable.rb +40 -0
- data/lib/occi/core/helpers/parser_dereferencer.rb +96 -0
- data/lib/occi/core/helpers/raw_json_parser.rb +18 -0
- data/lib/occi/core/helpers/renderable.rb +93 -0
- data/lib/occi/core/helpers/yaml_summoner.rb +44 -0
- data/lib/occi/core/helpers.rb +13 -0
- data/lib/occi/core/instance_builder.rb +162 -0
- data/lib/occi/core/kind.rb +100 -132
- data/lib/occi/core/link.rb +47 -72
- data/lib/occi/core/mixin.rb +76 -61
- data/lib/occi/core/model.rb +341 -0
- data/lib/occi/core/parsers/.gitkeep +0 -0
- data/lib/occi/core/parsers/base_parser.rb +168 -0
- data/lib/occi/core/parsers/json/.gitkeep +0 -0
- data/lib/occi/core/parsers/json/action_instance.rb +36 -0
- data/lib/occi/core/parsers/json/category.rb +113 -0
- data/lib/occi/core/parsers/json/entity.rb +156 -0
- data/lib/occi/core/parsers/json/validator/.gitkeep +0 -0
- data/lib/occi/core/parsers/json/validator/action-instance.json +3 -0
- data/lib/occi/core/parsers/json/validator/entity-collection.json +3 -0
- data/lib/occi/core/parsers/json/validator/link-collection.json +3 -0
- data/lib/occi/core/parsers/json/validator/link.json +3 -0
- data/lib/occi/core/parsers/json/validator/locations.json +3 -0
- data/lib/occi/core/parsers/json/validator/mixin-collection.json +3 -0
- data/lib/occi/core/parsers/json/validator/model.json +3 -0
- data/lib/occi/core/parsers/json/validator/occi-schema.json +277 -0
- data/lib/occi/core/parsers/json/validator/resource-collection.json +3 -0
- data/lib/occi/core/parsers/json/validator/resource.json +3 -0
- data/lib/occi/core/parsers/json/validator.rb +87 -0
- data/lib/occi/core/parsers/json_parser.rb +128 -0
- data/lib/occi/core/parsers/text/.gitkeep +0 -0
- data/lib/occi/core/parsers/text/category.rb +183 -0
- data/lib/occi/core/parsers/text/constants.rb +89 -0
- data/lib/occi/core/parsers/text/entity.rb +257 -0
- data/lib/occi/core/parsers/text/location.rb +48 -0
- data/lib/occi/core/parsers/text_parser.rb +257 -0
- data/lib/occi/core/parsers.rb +18 -0
- data/lib/occi/core/renderer_factory.rb +213 -0
- data/lib/occi/core/renderers/.gitkeep +0 -0
- data/lib/occi/core/renderers/base_renderer.rb +81 -0
- data/lib/occi/core/renderers/json/.gitkeep +0 -0
- data/lib/occi/core/renderers/json/action_instance.rb +24 -0
- data/lib/occi/core/renderers/json/attributes.rb +50 -0
- data/lib/occi/core/renderers/json/base.rb +46 -0
- data/lib/occi/core/renderers/json/category.rb +85 -0
- data/lib/occi/core/renderers/json/collection.rb +52 -0
- data/lib/occi/core/renderers/json/instance.rb +39 -0
- data/lib/occi/core/renderers/json/link.rb +48 -0
- data/lib/occi/core/renderers/json/model.rb +26 -0
- data/lib/occi/core/renderers/json/resource.rb +27 -0
- data/lib/occi/core/renderers/json_renderer.rb +72 -0
- data/lib/occi/core/renderers/text/.gitkeep +0 -0
- data/lib/occi/core/renderers/text/action_instance.rb +36 -0
- data/lib/occi/core/renderers/text/attributes.rb +87 -0
- data/lib/occi/core/renderers/text/base.rb +82 -0
- data/lib/occi/core/renderers/text/category.rb +183 -0
- data/lib/occi/core/renderers/text/collection.rb +65 -0
- data/lib/occi/core/renderers/text/instance.rb +44 -0
- data/lib/occi/core/renderers/text/link.rb +40 -0
- data/lib/occi/core/renderers/text/model.rb +41 -0
- data/lib/occi/core/renderers/text/resource.rb +109 -0
- data/lib/occi/core/renderers/text_renderer.rb +72 -0
- data/lib/occi/core/renderers.rb +20 -0
- data/lib/occi/core/resource.rb +93 -57
- data/lib/occi/core/utils/.gitkeep +0 -0
- data/lib/occi/core/version.rb +17 -0
- data/lib/occi/core/warehouse/actions/.gitkeep +0 -0
- data/lib/occi/core/warehouse/actions/attributes/.gitkeep +0 -0
- data/lib/occi/core/warehouse/kinds/.gitkeep +0 -0
- data/lib/occi/core/warehouse/kinds/attributes/.gitkeep +0 -0
- data/lib/occi/core/warehouse/kinds/attributes/occi.core.id.yml +7 -0
- data/lib/occi/core/warehouse/kinds/attributes/occi.core.source.yml +7 -0
- data/lib/occi/core/warehouse/kinds/attributes/occi.core.summary.yml +7 -0
- data/lib/occi/core/warehouse/kinds/attributes/occi.core.target.yml +7 -0
- data/lib/occi/core/warehouse/kinds/attributes/occi.core.title.yml +7 -0
- data/lib/occi/core/warehouse/kinds/entity.yml +10 -0
- data/lib/occi/core/warehouse/kinds/link.yml +10 -0
- data/lib/occi/core/warehouse/kinds/resource.yml +9 -0
- data/lib/occi/core/warehouse/mixins/.gitkeep +0 -0
- data/lib/occi/core/warehouse/mixins/attributes/.gitkeep +0 -0
- data/lib/occi/core/warehouse.rb +115 -0
- data/lib/occi/core.rb +59 -23
- data/lib/occi/infrastructure/compute.rb +5 -122
- data/lib/occi/infrastructure/constants.rb +25 -0
- data/lib/occi/infrastructure/instance_builder.rb +24 -0
- data/lib/occi/infrastructure/mixins/.gitkeep +0 -0
- data/lib/occi/infrastructure/mixins/os_tpl.rb +19 -0
- data/lib/occi/infrastructure/mixins/resource_tpl.rb +19 -0
- data/lib/occi/infrastructure/mixins.rb +12 -0
- data/lib/occi/infrastructure/model.rb +27 -0
- data/lib/occi/infrastructure/network.rb +5 -104
- data/lib/occi/infrastructure/networkinterface.rb +5 -100
- data/lib/occi/infrastructure/storage.rb +5 -59
- data/lib/occi/infrastructure/storagelink.rb +5 -54
- data/lib/occi/infrastructure/version.rb +5 -0
- data/lib/occi/infrastructure/warehouse/actions/.gitkeep +0 -0
- data/lib/occi/infrastructure/warehouse/actions/attributes/.gitkeep +0 -0
- data/lib/occi/infrastructure/warehouse/actions/compute_restart.yml +12 -0
- data/lib/occi/infrastructure/warehouse/actions/compute_save.yml +19 -0
- data/lib/occi/infrastructure/warehouse/actions/compute_start.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/compute_stop.yml +12 -0
- data/lib/occi/infrastructure/warehouse/actions/compute_suspend.yml +12 -0
- data/lib/occi/infrastructure/warehouse/actions/network_down.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/network_up.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/networkinterface_down.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/networkinterface_up.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/storage_backup.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/storage_offline.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/storage_online.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/storage_resize.yml +12 -0
- data/lib/occi/infrastructure/warehouse/actions/storage_snapshot.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/storagelink_offline.yml +4 -0
- data/lib/occi/infrastructure/warehouse/actions/storagelink_online.yml +4 -0
- data/lib/occi/infrastructure/warehouse/kinds/.gitkeep +0 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/.gitkeep +0 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.architecture.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.cores.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.hostname.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.memory.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.speed.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.state.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.network.label.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.network.state.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.network.vlan.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.networkinterface.interface.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.networkinterface.mac.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.networkinterface.state.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.storage.size.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.storage.state.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.storagelink.deviceid.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.storagelink.mountpoint.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.storagelink.state.yml +7 -0
- data/lib/occi/infrastructure/warehouse/kinds/compute.yml +19 -0
- data/lib/occi/infrastructure/warehouse/kinds/network.yml +13 -0
- data/lib/occi/infrastructure/warehouse/kinds/networkinterface.yml +13 -0
- data/lib/occi/infrastructure/warehouse/kinds/storage.yml +15 -0
- data/lib/occi/infrastructure/warehouse/kinds/storagelink.yml +13 -0
- data/lib/occi/infrastructure/warehouse/mixins/.gitkeep +0 -0
- data/lib/occi/infrastructure/warehouse/mixins/attributes/.gitkeep +0 -0
- data/lib/occi/infrastructure/warehouse/mixins/attributes/occi.network.address.yml +7 -0
- data/lib/occi/infrastructure/warehouse/mixins/attributes/occi.network.allocation.yml +7 -0
- data/lib/occi/infrastructure/warehouse/mixins/attributes/occi.network.gateway.yml +7 -0
- data/lib/occi/infrastructure/warehouse/mixins/attributes/occi.networkinterface.address.yml +7 -0
- data/lib/occi/infrastructure/warehouse/mixins/attributes/occi.networkinterface.allocation.yml +7 -0
- data/lib/occi/infrastructure/warehouse/mixins/attributes/occi.networkinterface.gateway.yml +7 -0
- data/lib/occi/infrastructure/warehouse/mixins/ipnetwork.yml +11 -0
- data/lib/occi/infrastructure/warehouse/mixins/ipnetworkinterface.yml +11 -0
- data/lib/occi/infrastructure/warehouse.rb +20 -0
- data/lib/occi/infrastructure-ext.rb +35 -0
- data/lib/occi/infrastructure.rb +34 -19
- data/lib/occi/infrastructure_ext/constants.rb +20 -0
- data/lib/occi/infrastructure_ext/instance_builder.rb +22 -0
- data/lib/occi/infrastructure_ext/ipreservation.rb +9 -0
- data/lib/occi/infrastructure_ext/mixins/.gitkeep +0 -0
- data/lib/occi/infrastructure_ext/mixins/availability_zone.rb +19 -0
- data/lib/occi/infrastructure_ext/mixins.rb +12 -0
- data/lib/occi/infrastructure_ext/model.rb +26 -0
- data/lib/occi/infrastructure_ext/securitygroup.rb +9 -0
- data/lib/occi/infrastructure_ext/securitygrouplink.rb +9 -0
- data/lib/occi/infrastructure_ext/version.rb +5 -0
- data/lib/occi/infrastructure_ext/warehouse/actions/.gitkeep +0 -0
- data/lib/occi/infrastructure_ext/warehouse/actions/attributes/.gitkeep +0 -0
- data/lib/occi/infrastructure_ext/warehouse/actions/ipreservation_down.yml +4 -0
- data/lib/occi/infrastructure_ext/warehouse/actions/ipreservation_up.yml +4 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/.gitkeep +0 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/.gitkeep +0 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.ipreservation.address.yml +7 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.ipreservation.state.yml +7 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.ipreservation.used.yml +7 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygroup.rules.yml +7 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygroup.state.yml +7 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygrouplink.state.yml +7 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/ipreservation.yml +13 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/securitygroup.yml +9 -0
- data/lib/occi/infrastructure_ext/warehouse/kinds/securitygrouplink.yml +8 -0
- data/lib/occi/infrastructure_ext/warehouse/mixins/.gitkeep +0 -0
- data/lib/occi/infrastructure_ext/warehouse/mixins/attributes/.gitkeep +0 -0
- data/lib/occi/infrastructure_ext/warehouse.rb +20 -0
- data/lib/occi/monkey_island/boolean.rb +6 -0
- data/lib/occi/monkey_island/hash.rb +4 -0
- data/occi-core.gemspec +26 -26
- metadata +312 -243
- data/.yardopts +0 -1
- data/config/occi.yml +0 -4
- data/lib/occi/collection.rb +0 -265
- data/lib/occi/core/actions.rb +0 -21
- data/lib/occi/core/attributes.rb +0 -411
- data/lib/occi/core/categories.rb +0 -64
- data/lib/occi/core/dependencies.rb +0 -7
- data/lib/occi/core/entities.rb +0 -48
- data/lib/occi/core/kinds.rb +0 -22
- data/lib/occi/core/links.rb +0 -37
- data/lib/occi/core/mixins.rb +0 -37
- data/lib/occi/core/properties.rb +0 -108
- data/lib/occi/core/resources.rb +0 -14
- data/lib/occi/errors/attribute_definitions_converted_error.rb +0 -5
- data/lib/occi/errors/attribute_missing_error.rb +0 -5
- data/lib/occi/errors/attribute_name_invalid_error.rb +0 -5
- data/lib/occi/errors/attribute_not_defined_error.rb +0 -5
- data/lib/occi/errors/attribute_property_type_error.rb +0 -5
- data/lib/occi/errors/attribute_type_error.rb +0 -5
- data/lib/occi/errors/category_not_defined_error.rb +0 -5
- data/lib/occi/errors/kind_not_defined_error.rb +0 -5
- data/lib/occi/errors/parser_input_error.rb +0 -5
- data/lib/occi/errors/parser_type_error.rb +0 -5
- data/lib/occi/errors.rb +0 -1
- data/lib/occi/extensions/hashie.rb +0 -25
- data/lib/occi/helpers/comparators/action_instance.rb +0 -22
- data/lib/occi/helpers/comparators/attributes.rb +0 -22
- data/lib/occi/helpers/comparators/categories.rb +0 -22
- data/lib/occi/helpers/comparators/category.rb +0 -22
- data/lib/occi/helpers/comparators/collection.rb +0 -40
- data/lib/occi/helpers/comparators/entities.rb +0 -22
- data/lib/occi/helpers/comparators/entity.rb +0 -22
- data/lib/occi/helpers/comparators/properties.rb +0 -26
- data/lib/occi/helpers/comparators.rb +0 -1
- data/lib/occi/helpers/inspect.rb +0 -12
- data/lib/occi/infrastructure/network/ipnetwork.rb +0 -28
- data/lib/occi/infrastructure/networkinterface/ipnetworkinterface.rb +0 -28
- data/lib/occi/infrastructure/os_tpl.rb +0 -20
- data/lib/occi/infrastructure/resource_tpl.rb +0 -20
- data/lib/occi/log.rb +0 -71
- data/lib/occi/model.rb +0 -87
- data/lib/occi/parser/json.rb +0 -38
- data/lib/occi/parser/text/constants.rb +0 -89
- data/lib/occi/parser/text.rb +0 -280
- data/lib/occi/parser.rb +0 -144
- data/lib/occi/settings.rb +0 -10
- data/lib/occi/version.rb +0 -3
- data/lib/occi-core.rb +0 -53
- data/spec/helpers/to_plain.rb +0 -39
- data/spec/helpers/yaml_hash.rb +0 -32
- data/spec/occi/collection_samples/collection1.json +0 -1
- data/spec/occi/collection_samples/directory2/collection2.json +0 -1
- data/spec/occi/collection_spec.rb +0 -1003
- data/spec/occi/core/action_instance_spec.rb +0 -317
- data/spec/occi/core/action_spec.rb +0 -71
- data/spec/occi/core/attributes_spec.rb +0 -665
- data/spec/occi/core/categories_spec.rb +0 -28
- data/spec/occi/core/category_spec.rb +0 -216
- data/spec/occi/core/entities_spec.rb +0 -160
- data/spec/occi/core/entity_spec.rb +0 -374
- data/spec/occi/core/kind_spec.rb +0 -182
- data/spec/occi/core/link_spec.rb +0 -52
- data/spec/occi/core/links_spec.rb +0 -132
- data/spec/occi/core/mixin_spec.rb +0 -38
- data/spec/occi/core/mixins_spec.rb +0 -107
- data/spec/occi/core/properties_spec.rb +0 -171
- data/spec/occi/core/resource_spec.rb +0 -42
- data/spec/occi/core_spec.rb +0 -12
- data/spec/occi/infrastructure/compute_spec.rb +0 -229
- data/spec/occi/infrastructure/network_spec.rb +0 -96
- data/spec/occi/infrastructure/networkinterface_spec.rb +0 -96
- data/spec/occi/infrastructure/storage_spec.rb +0 -33
- data/spec/occi/infrastructure/storagelink_spec.rb +0 -45
- data/spec/occi/log_spec.rb +0 -117
- data/spec/occi/model_spec.rb +0 -256
- data/spec/occi/parser/json_samples/test.json +0 -49
- data/spec/occi/parser/text_samples/occi_categories.body_plain.expected +0 -2
- data/spec/occi/parser/text_samples/occi_categories.expected +0 -2
- data/spec/occi/parser/text_samples/occi_categories.parse_headers.expected +0 -2
- data/spec/occi/parser/text_samples/occi_categories.text +0 -2
- data/spec/occi/parser/text_samples/occi_compute_rocci_server.expected +0 -11
- data/spec/occi/parser/text_samples/occi_compute_rocci_server.text +0 -10
- data/spec/occi/parser/text_samples/occi_link_resource_instance.body_plain.expected +0 -7
- data/spec/occi/parser/text_samples/occi_link_resource_instance.expected +0 -7
- data/spec/occi/parser/text_samples/occi_link_resource_instance.parse.expected +0 -7
- data/spec/occi/parser/text_samples/occi_link_resource_instance.text +0 -7
- data/spec/occi/parser/text_samples/occi_link_simple.expected +0 -7
- data/spec/occi/parser/text_samples/occi_link_simple.text +0 -1
- data/spec/occi/parser/text_samples/occi_link_w_attributes.expected +0 -7
- data/spec/occi/parser/text_samples/occi_link_w_attributes.text +0 -7
- data/spec/occi/parser/text_samples/occi_link_w_category.expected +0 -7
- data/spec/occi/parser/text_samples/occi_link_w_category.text +0 -3
- data/spec/occi/parser/text_samples/occi_model_categories.expected +0 -3
- data/spec/occi/parser/text_samples/occi_model_rocci_server.text +0 -51
- data/spec/occi/parser/text_samples/occi_network_rocci_server.body_plain.expected +0 -11
- data/spec/occi/parser/text_samples/occi_network_rocci_server.expected +0 -11
- data/spec/occi/parser/text_samples/occi_network_rocci_server.resource.header.expected +0 -9
- data/spec/occi/parser/text_samples/occi_network_rocci_server.resource.rack.expected +0 -9
- data/spec/occi/parser/text_samples/occi_network_rocci_server.text +0 -11
- data/spec/occi/parser/text_samples/occi_resource_custom_class_w_attributes.parse.expected +0 -15
- data/spec/occi/parser/text_samples/occi_resource_custom_class_w_attributes.text +0 -15
- data/spec/occi/parser/text_samples/occi_resource_w_attributes.text +0 -11
- data/spec/occi/parser/text_samples/occi_resource_w_inline_links.expected +0 -1
- data/spec/occi/parser/text_samples/occi_resource_w_inline_links.text +0 -16
- data/spec/occi/parser/text_samples/occi_resource_w_inline_links_only.text +0 -13
- data/spec/occi/parser/text_samples/occi_storage_rocci_server.expected +0 -9
- data/spec/occi/parser/text_samples/occi_storage_rocci_server.text +0 -9
- data/spec/occi/parser/text_spec.rb +0 -320
- data/spec/occi/parser_spec.rb +0 -259
- data/spec/occi-core_spec.rb +0 -31
- data/spec/spec_helper.rb +0 -18
@@ -1,229 +0,0 @@
|
|
1
|
-
module Occi
|
2
|
-
module Infrastructure
|
3
|
-
describe Compute do
|
4
|
-
let(:compute){ Occi::Infrastructure::Compute.new }
|
5
|
-
let(:modl){
|
6
|
-
modl = Occi::Model.new
|
7
|
-
modl.register_infrastructure
|
8
|
-
modl }
|
9
|
-
|
10
|
-
context 'Storage Links' do
|
11
|
-
let(:target){
|
12
|
-
target = Occi::Infrastructure::Storage.new
|
13
|
-
# create a random ID as the storage resource must already exist and therefore must have an ID assigned
|
14
|
-
target.id = UUIDTools::UUID.random_create.to_s
|
15
|
-
target }
|
16
|
-
|
17
|
-
context '#storagelink' do
|
18
|
-
it "creates a single storagelink" do
|
19
|
-
compute.storagelink target
|
20
|
-
expect(compute.links.count).to eq 1
|
21
|
-
end
|
22
|
-
|
23
|
-
it "creates a storagelink to a storage resource" do
|
24
|
-
compute.storagelink target
|
25
|
-
expect(compute.links.first).to be_kind_of Occi::Infrastructure::Storagelink
|
26
|
-
end
|
27
|
-
|
28
|
-
it "has the correct link as target" do
|
29
|
-
compute.storagelink target
|
30
|
-
expect(compute.links.first.target).to eq target.to_s
|
31
|
-
end
|
32
|
-
|
33
|
-
it "has target with correct ID" do
|
34
|
-
compute.storagelink target
|
35
|
-
expect(compute.links.first.target.split('/').last).to eq target.id
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
context '#storagelinks' do
|
40
|
-
it 'has the correct number of members -- single' do
|
41
|
-
compute.storagelink target
|
42
|
-
compute.model=modl
|
43
|
-
expect(compute.storagelinks.count).to eq 1
|
44
|
-
end
|
45
|
-
|
46
|
-
it 'has the correct number of members -- double' do
|
47
|
-
target2 = Occi::Infrastructure::Storage.new
|
48
|
-
target2.id = UUIDTools::UUID.random_create.to_s
|
49
|
-
compute.storagelink target
|
50
|
-
compute.storagelink target2
|
51
|
-
compute.model=modl
|
52
|
-
expect(compute.storagelinks.count).to eq 2
|
53
|
-
end
|
54
|
-
|
55
|
-
it 'shows correctly in collections' do
|
56
|
-
compute.storagelink target
|
57
|
-
compute.model=modl
|
58
|
-
expect(compute.storagelinks[0].target.split('/').last).to eq target.id
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
context 'Network Interfaces' do
|
64
|
-
let(:target){
|
65
|
-
target = Occi::Infrastructure::Network.new
|
66
|
-
# create a random ID as the network resource must already exist and therefore must have an ID assigned
|
67
|
-
target.id = UUIDTools::UUID.random_create.to_s
|
68
|
-
target }
|
69
|
-
|
70
|
-
context '#networkinterface' do
|
71
|
-
it "creates a single networkinterface" do
|
72
|
-
compute.networkinterface target
|
73
|
-
expect(compute.links.count).to eq 1
|
74
|
-
end
|
75
|
-
|
76
|
-
it "creates a networkinterface to a storage resource" do
|
77
|
-
compute.networkinterface target
|
78
|
-
expect(compute.links.first).to be_kind_of Occi::Infrastructure::Networkinterface
|
79
|
-
end
|
80
|
-
|
81
|
-
it "has the correct interface as target" do
|
82
|
-
compute.networkinterface target
|
83
|
-
expect(compute.links.first.target).to eq target.to_s
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
context '#networkinterfaces' do
|
88
|
-
it 'has the correct number of members -- single' do
|
89
|
-
compute.networkinterface target
|
90
|
-
compute.model=modl
|
91
|
-
expect(compute.networkinterfaces.count).to eq 1
|
92
|
-
end
|
93
|
-
|
94
|
-
it 'has the correct number of members -- double' do
|
95
|
-
target2 = Occi::Infrastructure::Network.new
|
96
|
-
target2.id = UUIDTools::UUID.random_create.to_s
|
97
|
-
compute.networkinterface target
|
98
|
-
compute.networkinterface target2
|
99
|
-
compute.model=modl
|
100
|
-
expect(compute.networkinterfaces.count).to eq 2
|
101
|
-
end
|
102
|
-
|
103
|
-
it 'shows correctly in collections' do
|
104
|
-
compute.networkinterface target
|
105
|
-
compute.model=modl
|
106
|
-
expect(compute.networkinterfaces[0].target.split('/').last).to eq target.id
|
107
|
-
end
|
108
|
-
end
|
109
|
-
end
|
110
|
-
|
111
|
-
context '#architecture' do
|
112
|
-
it 'can be set and read' do
|
113
|
-
compute.architecture = 'x64'
|
114
|
-
expect(compute.architecture).to eq 'x64'
|
115
|
-
end
|
116
|
-
|
117
|
-
context 'Pattern matching' do
|
118
|
-
before(:each) { Occi::Settings['compatibility']=false }
|
119
|
-
after(:each) { Occi::Settings.reload! }
|
120
|
-
|
121
|
-
it 'preserves non-matching values with verification settings off' do
|
122
|
-
Occi::Settings['verify_attribute_pattern']=false
|
123
|
-
compute.model=modl
|
124
|
-
expect{compute.architecture = 'z80'}.to_not raise_error
|
125
|
-
end
|
126
|
-
|
127
|
-
it 'rejects non-matching values with verification settings on' do
|
128
|
-
Occi::Settings['verify_attribute_pattern']=true
|
129
|
-
compute.model=modl
|
130
|
-
expect{compute.architecture = 'z80'}.to raise_error Occi::Errors::AttributeTypeError
|
131
|
-
end
|
132
|
-
end
|
133
|
-
end
|
134
|
-
|
135
|
-
context '#cores' do
|
136
|
-
it 'can be set and read' do
|
137
|
-
compute.cores = 32
|
138
|
-
expect(compute.cores).to eq 32
|
139
|
-
end
|
140
|
-
|
141
|
-
it 'rejects non-numeric values' do
|
142
|
-
expect{compute.memory = 'a few'}.to raise_error
|
143
|
-
end
|
144
|
-
end
|
145
|
-
|
146
|
-
context '#hostname' do
|
147
|
-
it 'can be set and read' do
|
148
|
-
compute.hostname = 'testhostname'
|
149
|
-
expect(compute.hostname).to eq 'testhostname'
|
150
|
-
end
|
151
|
-
|
152
|
-
context 'Pattern matching' do
|
153
|
-
before(:each) { Occi::Settings['compatibility']=false }
|
154
|
-
after(:each) { Occi::Settings.reload! }
|
155
|
-
|
156
|
-
it 'preserves non-matching values with verification settings off' do
|
157
|
-
Occi::Settings['verify_attribute_pattern']=false
|
158
|
-
compute.model=modl
|
159
|
-
expect{compute.hostname = 'notaproperhostname'}.to_not raise_error
|
160
|
-
end
|
161
|
-
|
162
|
-
it 'rejects non-matching values with verification settings on' do
|
163
|
-
Occi::Settings['verify_attribute_pattern']=true
|
164
|
-
compute.model=modl
|
165
|
-
expect{compute.hostname = 'notaproperhostname'}.to raise_error Occi::Errors::AttributeTypeError
|
166
|
-
end
|
167
|
-
end
|
168
|
-
end
|
169
|
-
|
170
|
-
context '#speed' do
|
171
|
-
it 'can be set and read' do
|
172
|
-
compute.speed = 3000.0
|
173
|
-
expect(compute.speed).to eq 3000.0
|
174
|
-
end
|
175
|
-
|
176
|
-
it 'rejects non-numeric values' do
|
177
|
-
expect{compute.memory = 'fast'}.to raise_error
|
178
|
-
end
|
179
|
-
end
|
180
|
-
|
181
|
-
context '#memory' do
|
182
|
-
it 'can be set and read' do
|
183
|
-
compute.memory = 4096
|
184
|
-
expect(compute.memory).to eq 4096
|
185
|
-
end
|
186
|
-
|
187
|
-
it 'rejects non-numeric values' do
|
188
|
-
expect{compute.memory = 'a lot'}.to raise_error
|
189
|
-
end
|
190
|
-
end
|
191
|
-
|
192
|
-
context '#state' do
|
193
|
-
it 'has correct default value with set_defaults == true' do
|
194
|
-
compute.model=modl
|
195
|
-
compute.check(true)
|
196
|
-
expect(compute.state).to eq 'inactive'
|
197
|
-
end
|
198
|
-
|
199
|
-
it 'does not take the default value with set_defaults set to default' do
|
200
|
-
compute.model=modl
|
201
|
-
compute.check
|
202
|
-
expect(compute.state).to_not eq 'inactive'
|
203
|
-
end
|
204
|
-
|
205
|
-
it 'can be set and read' do
|
206
|
-
compute.state = 'active'
|
207
|
-
expect(compute.state).to eq 'active'
|
208
|
-
end
|
209
|
-
|
210
|
-
context 'Pattern matching' do
|
211
|
-
before(:each) { Occi::Settings['compatibility']=false }
|
212
|
-
after(:each) { Occi::Settings.reload! }
|
213
|
-
|
214
|
-
it 'preserves non-matching values with verification settings off' do
|
215
|
-
Occi::Settings['verify_attribute_pattern']=false
|
216
|
-
compute.model=modl
|
217
|
-
expect{compute.state = 'broken'}.to_not raise_error
|
218
|
-
end
|
219
|
-
|
220
|
-
it 'rejects non-matching values with verification settings on' do
|
221
|
-
Occi::Settings['verify_attribute_pattern']=true
|
222
|
-
compute.model=modl
|
223
|
-
expect{compute.state = 'broken'}.to raise_error Occi::Errors::AttributeTypeError
|
224
|
-
end
|
225
|
-
end
|
226
|
-
end
|
227
|
-
end
|
228
|
-
end
|
229
|
-
end
|
@@ -1,96 +0,0 @@
|
|
1
|
-
module Occi
|
2
|
-
module Infrastructure
|
3
|
-
describe Network do
|
4
|
-
|
5
|
-
context 'setters/getters' do
|
6
|
-
let(:network){ Occi::Infrastructure::Network.new }
|
7
|
-
context '#vlan' do
|
8
|
-
it 'Can be set and read as attribute' do
|
9
|
-
network.vlan = 4
|
10
|
-
expect(network.attributes.occi.network.vlan).to eql 4
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'Can be set and read through getter' do
|
14
|
-
network.vlan = 4
|
15
|
-
expect(network.vlan).to eql 4
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
context '#label' do
|
20
|
-
it 'Can be set and read as attribute' do
|
21
|
-
network.label = "Network Label"
|
22
|
-
expect(network.attributes.occi.network.label).to eql "Network Label"
|
23
|
-
end
|
24
|
-
|
25
|
-
it 'Can be set and read through getter' do
|
26
|
-
network.label = "Network Label"
|
27
|
-
expect(network.label).to eql "Network Label"
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
context '#state' do
|
32
|
-
it 'Can be set and read as attribute' do
|
33
|
-
network.state = "inactive"
|
34
|
-
expect(network.attributes.occi.network.state).to eql "inactive"
|
35
|
-
end
|
36
|
-
|
37
|
-
it 'Can be set and read through getter' do
|
38
|
-
network.state = "inactive"
|
39
|
-
expect(network.state).to eql "inactive"
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
context '#address' do
|
44
|
-
it 'Can be set and read as attribute' do
|
45
|
-
network.address = "127.0.0.1"
|
46
|
-
expect(network.attributes.occi.network.address).to eql "127.0.0.1"
|
47
|
-
end
|
48
|
-
|
49
|
-
it 'Can be set and read through getter' do
|
50
|
-
network.address = "127.0.0.1"
|
51
|
-
expect(network.address).to eql "127.0.0.1"
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
context '#gateway' do
|
56
|
-
it 'Can be set and read as attribute' do
|
57
|
-
network.gateway = "127.0.0.255"
|
58
|
-
expect(network.attributes.occi.network.gateway).to eql "127.0.0.255"
|
59
|
-
end
|
60
|
-
|
61
|
-
it 'Can be set and read through getter' do
|
62
|
-
network.gateway = "127.0.0.255"
|
63
|
-
expect(network.gateway).to eql "127.0.0.255"
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
context '#allocation' do
|
68
|
-
it 'Can be set and read as attribute' do
|
69
|
-
network.allocation = "static"
|
70
|
-
expect(network.attributes.occi.network.allocation).to eql "static"
|
71
|
-
end
|
72
|
-
|
73
|
-
it 'Can be set and read through getter' do
|
74
|
-
network.allocation = "static"
|
75
|
-
expect(network.allocation).to eql "static"
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
context '#ipnetwork' do
|
81
|
-
let(:network){ Occi::Infrastructure::Network.new }
|
82
|
-
|
83
|
-
it 'adds the Ipnetwork mixin' do
|
84
|
-
network.ipnetwork(true)
|
85
|
-
expect(network.mixins.first.to_s).to eql "http://schemas.ogf.org/occi/infrastructure/network#ipnetwork"
|
86
|
-
end
|
87
|
-
|
88
|
-
it 'removes the Ipnetwork mixin' do
|
89
|
-
network.ipnetwork(true)
|
90
|
-
network.ipnetwork(false)
|
91
|
-
expect(network.mixins.count).to eql 0
|
92
|
-
end
|
93
|
-
end
|
94
|
-
end
|
95
|
-
end
|
96
|
-
end
|
@@ -1,96 +0,0 @@
|
|
1
|
-
module Occi
|
2
|
-
module Infrastructure
|
3
|
-
describe Networkinterface do
|
4
|
-
|
5
|
-
context 'setters/getters' do
|
6
|
-
let(:networkinterface){ Occi::Infrastructure::Networkinterface.new }
|
7
|
-
context '#interface' do
|
8
|
-
it 'Can be set and read as attribute' do
|
9
|
-
networkinterface.interface = "eth0"
|
10
|
-
expect(networkinterface.attributes.occi.networkinterface.interface).to eql "eth0"
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'Can be set and read through getter' do
|
14
|
-
networkinterface.interface = "eth0"
|
15
|
-
expect(networkinterface.interface).to eql "eth0"
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
context '#mac' do
|
20
|
-
it 'Can be set and read as attribute' do
|
21
|
-
networkinterface.mac = "FF-FF-FF-FF-FF-FF"
|
22
|
-
expect(networkinterface.attributes.occi.networkinterface.mac).to eql "FF-FF-FF-FF-FF-FF"
|
23
|
-
end
|
24
|
-
|
25
|
-
it 'Can be set and read through getter' do
|
26
|
-
networkinterface.mac = "FF-FF-FF-FF-FF-FF"
|
27
|
-
expect(networkinterface.mac).to eql "FF-FF-FF-FF-FF-FF"
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
context '#state' do
|
32
|
-
it 'Can be set and read as attribute' do
|
33
|
-
networkinterface.state = "error"
|
34
|
-
expect(networkinterface.attributes.occi.networkinterface.state).to eql "error"
|
35
|
-
end
|
36
|
-
|
37
|
-
it 'Can be set and read through getter' do
|
38
|
-
networkinterface.state = "error"
|
39
|
-
expect(networkinterface.state).to eql "error"
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
context '#address' do
|
44
|
-
it 'Can be set and read as attribute' do
|
45
|
-
networkinterface.address = "127.0.0.1"
|
46
|
-
expect(networkinterface.attributes.occi.networkinterface.address).to eql "127.0.0.1"
|
47
|
-
end
|
48
|
-
|
49
|
-
it 'Can be set and read through getter' do
|
50
|
-
networkinterface.address = "127.0.0.1"
|
51
|
-
expect(networkinterface.address).to eql "127.0.0.1"
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
context '#gateway' do
|
56
|
-
it 'Can be set and read as attribute' do
|
57
|
-
networkinterface.gateway = "127.0.0.255"
|
58
|
-
expect(networkinterface.attributes.occi.networkinterface.gateway).to eql "127.0.0.255"
|
59
|
-
end
|
60
|
-
|
61
|
-
it 'Can be set and read through getter' do
|
62
|
-
networkinterface.gateway = "127.0.0.255"
|
63
|
-
expect(networkinterface.gateway).to eql "127.0.0.255"
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
context '#allocation' do
|
68
|
-
it 'Can be set and read as attribute' do
|
69
|
-
networkinterface.allocation = "static"
|
70
|
-
expect(networkinterface.attributes.occi.networkinterface.allocation).to eql "static"
|
71
|
-
end
|
72
|
-
|
73
|
-
it 'Can be set and read through getter' do
|
74
|
-
networkinterface.allocation = "static"
|
75
|
-
expect(networkinterface.allocation).to eql "static"
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
context '#ipnetworkinterface' do
|
81
|
-
let(:networkinterface){ Occi::Infrastructure::Networkinterface.new }
|
82
|
-
|
83
|
-
it 'adds the Ipnetwork mixin' do
|
84
|
-
networkinterface.ipnetworkinterface(true)
|
85
|
-
expect(networkinterface.mixins.first.to_s).to eql "http://schemas.ogf.org/occi/infrastructure/networkinterface#ipnetworkinterface"
|
86
|
-
end
|
87
|
-
|
88
|
-
it 'removes the Ipnetwork mixin' do
|
89
|
-
networkinterface.ipnetworkinterface(true)
|
90
|
-
networkinterface.ipnetworkinterface(false)
|
91
|
-
expect(networkinterface.mixins.count).to eql 0
|
92
|
-
end
|
93
|
-
end
|
94
|
-
end
|
95
|
-
end
|
96
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
module Occi
|
2
|
-
module Infrastructure
|
3
|
-
describe Storage do
|
4
|
-
|
5
|
-
context 'setters/getters' do
|
6
|
-
let(:storage){ Occi::Infrastructure::Storage.new }
|
7
|
-
context '#size' do
|
8
|
-
it 'Can be set and read as attribute' do
|
9
|
-
storage.size = 16777216
|
10
|
-
expect(storage.attributes.occi.storage['size']).to eql 16777216
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'Can be set and read through getter' do
|
14
|
-
storage.size = 16777216
|
15
|
-
expect(storage.size).to eql 16777216
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
context '#state' do
|
20
|
-
it 'Can be set and read as attribute' do
|
21
|
-
storage.state = "online"
|
22
|
-
expect(storage.attributes.occi.storage.state).to eql "online"
|
23
|
-
end
|
24
|
-
|
25
|
-
it 'Can be set and read through getter' do
|
26
|
-
storage.state = "online"
|
27
|
-
expect(storage.state).to eql "online"
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
module Occi
|
2
|
-
module Infrastructure
|
3
|
-
describe Storagelink do
|
4
|
-
|
5
|
-
context 'setters/getters' do
|
6
|
-
let(:storagelink){ Occi::Infrastructure::Storagelink.new }
|
7
|
-
context '#deviceid' do
|
8
|
-
it 'Can be set and read as attribute' do
|
9
|
-
storagelink.deviceid = "sda"
|
10
|
-
expect(storagelink.attributes.occi.storagelink.deviceid).to eql "sda"
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'Can be set and read through getter' do
|
14
|
-
storagelink.deviceid = "sda"
|
15
|
-
expect(storagelink.deviceid).to eql "sda"
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
context '#mountpoint' do
|
20
|
-
it 'Can be set and read as attribute' do
|
21
|
-
storagelink.mountpoint = "/mnt/sda"
|
22
|
-
expect(storagelink.attributes.occi.storagelink.mountpoint).to eql "/mnt/sda"
|
23
|
-
end
|
24
|
-
|
25
|
-
it 'Can be set and read through getter' do
|
26
|
-
storagelink.mountpoint = "/mnt/sda"
|
27
|
-
expect(storagelink.mountpoint).to eql "/mnt/sda"
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
context '#state' do
|
32
|
-
it 'Can be set and read as attribute' do
|
33
|
-
storagelink.state = "active"
|
34
|
-
expect(storagelink.attributes.occi.storagelink.state).to eql "active"
|
35
|
-
end
|
36
|
-
|
37
|
-
it 'Can be set and read through getter' do
|
38
|
-
storagelink.state = "active"
|
39
|
-
expect(storagelink.state).to eql "active"
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
data/spec/occi/log_spec.rb
DELETED
@@ -1,117 +0,0 @@
|
|
1
|
-
module Occi
|
2
|
-
describe Log do
|
3
|
-
|
4
|
-
context 'logging to files' do
|
5
|
-
let!(:testIO){ StringIO.new}
|
6
|
-
let!(:logger){ Occi::Log.new(testIO) }
|
7
|
-
after(:each) do
|
8
|
-
logger.close
|
9
|
-
end
|
10
|
-
|
11
|
-
it 'logs correctly with prioritiy DEBUG' do
|
12
|
-
Occi::Log.debug("Test Debug Text")
|
13
|
-
expect(testIO.string).to match (/D.*DEBUG.*Test Debug Text/)
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'logs correctly with prioritiy INFO' do
|
17
|
-
Occi::Log.info("Test Info Text")
|
18
|
-
expect(testIO.string).to match (/I.*INFO.*Test Info Text/)
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'logs correctly with prioritiy WARN' do
|
22
|
-
Occi::Log.warn("Test Warning Text")
|
23
|
-
expect(testIO.string).to match (/W.*WARN.*Test Warning Text/)
|
24
|
-
end
|
25
|
-
|
26
|
-
it 'logs correctly with prioritiy ERROR' do
|
27
|
-
Occi::Log.error("Test Error Text")
|
28
|
-
expect(testIO.string).to match (/E.*ERROR.*Test Error Text/)
|
29
|
-
end
|
30
|
-
|
31
|
-
it 'logs correctly with prioritiy FATAL' do
|
32
|
-
Occi::Log.fatal("Test Fatal Text")
|
33
|
-
expect(testIO.string).to match (/F.*FATAL.*Test Fatal Text/)
|
34
|
-
end
|
35
|
-
|
36
|
-
context "with log level set to filter out some messages" do
|
37
|
-
before(:each) do
|
38
|
-
logger.level=Occi::Log::ERROR
|
39
|
-
end
|
40
|
-
it 'does not log prioritiy DEBUG with log level set to ERROR' do
|
41
|
-
Occi::Log.debug("Second Debug Text")
|
42
|
-
expect(testIO.string).to_not match (/D.*DEBUG.*Second Debug Text/)
|
43
|
-
end
|
44
|
-
|
45
|
-
it 'does not log prioritiy WARN with log level set to ERROR' do
|
46
|
-
Occi::Log.info("Second Info Text")
|
47
|
-
expect(testIO.string).to_not match (/I.*INFO.*Second Info Text/)
|
48
|
-
end
|
49
|
-
|
50
|
-
it 'does not log prioritiy WARN with log level set to ERROR' do
|
51
|
-
Occi::Log.warn("Second Warning Text")
|
52
|
-
expect(testIO.string).to_not match (/W.*WARN.*Second Warning Text/)
|
53
|
-
end
|
54
|
-
|
55
|
-
it 'still logs with prioritiy ERROR' do
|
56
|
-
Occi::Log.error("Second Error Text")
|
57
|
-
expect(testIO.string).to match (/E.*ERROR.*Second Error Text/)
|
58
|
-
end
|
59
|
-
|
60
|
-
it 'still logs with prioritiy FATAL' do
|
61
|
-
Occi::Log.fatal("Second Fatal Text")
|
62
|
-
expect(testIO.string).to match (/F.*FATAL.*Second Fatal Text/)
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
it 'tells log lines apart correctly' do #This tests the correctness of the testing procedure rather than the code itself
|
67
|
-
Occi::Log.error("Second Error Text")
|
68
|
-
Occi::Log.fatal("Second Fatal Text")
|
69
|
-
expect(testIO.string).to_not match (/E.*ERROR.*Test Fatal Text/)
|
70
|
-
end
|
71
|
-
|
72
|
-
end
|
73
|
-
|
74
|
-
it 'copes with read-only log file' do
|
75
|
-
(contents = "locked file contents").freeze
|
76
|
-
testIO = StringIO.open(contents)
|
77
|
-
logger = Occi::Log.new(testIO)
|
78
|
-
expect(Occi::Log.fatal("New content")).to eq nil
|
79
|
-
logger.close
|
80
|
-
end
|
81
|
-
|
82
|
-
context 'reporting current log levels correctly' do
|
83
|
-
testIO = StringIO.new
|
84
|
-
logger = Occi::Log.new(testIO)
|
85
|
-
|
86
|
-
it 'has initial log level set to 0' do
|
87
|
-
expect(logger.level).to eq 0
|
88
|
-
end
|
89
|
-
|
90
|
-
it 'reports ERROR log level correctly' do
|
91
|
-
logger.level=Occi::Log::ERROR
|
92
|
-
expect(logger.level).to eq 3
|
93
|
-
end
|
94
|
-
|
95
|
-
logger.close
|
96
|
-
end
|
97
|
-
|
98
|
-
it 'logs through a pipe' do
|
99
|
-
r, w = IO.pipe
|
100
|
-
logger = Occi::Log.new(w)
|
101
|
-
logger.level = Occi::Log::INFO
|
102
|
-
Occi::Log.info("Test")
|
103
|
-
r.readline.include?("Test")
|
104
|
-
logger.close
|
105
|
-
end
|
106
|
-
|
107
|
-
it 'logs through a pre-initiated Logger' do
|
108
|
-
r, w = IO.pipe
|
109
|
-
logger = Occi::Log.new(Logger.new(w))
|
110
|
-
logger.level = Occi::Log::INFO
|
111
|
-
Occi::Log.info("Test")
|
112
|
-
r.readline.include?("Test")
|
113
|
-
logger.close
|
114
|
-
end
|
115
|
-
|
116
|
-
end
|
117
|
-
end
|