Ram Gandikota
/
IOTMetronome
FRDM K64F Metronome
Diff: mbed-client/test/mbedclient/utest/stub/m2mobjectinstance_stub.cpp
- Revision:
- 0:dbad57390bd1
diff -r 000000000000 -r dbad57390bd1 mbed-client/test/mbedclient/utest/stub/m2mobjectinstance_stub.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-client/test/mbedclient/utest/stub/m2mobjectinstance_stub.cpp Sun May 14 18:37:05 2017 +0000 @@ -0,0 +1,208 @@ +/* + * Copyright (c) 2015 ARM Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * Licensed under the Apache License, Version 2.0 (the License); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#include "m2mobjectinstance_stub.h" + +u_int8_t m2mobjectinstance_stub::int_value; +bool m2mobjectinstance_stub::bool_value; +M2MResource* m2mobjectinstance_stub::resource; +M2MResource* m2mobjectinstance_stub::create_resource; + +// The statically initialized list must be bigh enough to cater +// for all the tests, or the utest framework will complain for memory leak. +M2MResourceList m2mobjectinstance_stub::resource_list(12); + +M2MResourceInstance* m2mobjectinstance_stub::create_resource_instance; +sn_coap_hdr_s* m2mobjectinstance_stub::header; +M2MBase::BaseType m2mobjectinstance_stub::base_type; + + +void m2mobjectinstance_stub::clear() +{ + int_value = 0; + bool_value = false; + resource = NULL; + create_resource = NULL; + create_resource_instance = NULL; + header = NULL; + base_type = M2MBase::ObjectInstance; + resource_list.clear(); +} + +M2MObjectInstance::M2MObjectInstance(M2MObject& parent, const String &object_name, + const String &resource_type, + char *path, + bool external_blockwise_store) +: M2MBase(object_name, + M2MBase::Dynamic, + resource_type, + path, + external_blockwise_store), + _parent(parent) +{ +} + +M2MObjectInstance::M2MObjectInstance(M2MObject& parent, const lwm2m_parameters_s* static_res) +: M2MBase(static_res), _parent(parent) +{ + +} + +M2MObjectInstance::~M2MObjectInstance() +{ +} + +M2MResource* M2MObjectInstance::create_static_resource(const lwm2m_parameters_s* static_res, + M2MResourceInstance::ResourceType type) +{ + return m2mobjectinstance_stub::create_resource; +} + +M2MResource* M2MObjectInstance::create_static_resource(const String &resource_name, + const String &resource_type, + M2MResourceInstance::ResourceType type, + const uint8_t *value, + const uint8_t value_length, + bool multiple_instance, + bool external_blockwise_store) +{ + return m2mobjectinstance_stub::create_resource; +} + +M2MResource* M2MObjectInstance::create_dynamic_resource(const lwm2m_parameters_s* static_res, + M2MResourceInstance::ResourceType type, + bool observable) +{ + return m2mobjectinstance_stub::create_resource; +} + +M2MResource* M2MObjectInstance::create_dynamic_resource(const String &resource_name, + const String &resource_type, + M2MResourceInstance::ResourceType type, + bool observable, + bool multiple_instance, + bool external_blockwise_store) +{ + return m2mobjectinstance_stub::create_resource; +} + +M2MResourceInstance* M2MObjectInstance::create_static_resource_instance(const String &resource_name, + const String &resource_type, + M2MResourceInstance::ResourceType type, + const uint8_t *value, + const uint8_t value_length, + uint16_t instance_id, + bool external_blockwise_store) +{ + return m2mobjectinstance_stub::create_resource_instance; +} + + +M2MResourceInstance* M2MObjectInstance::create_dynamic_resource_instance(const String &resource_name, + const String &resource_type, + M2MResourceInstance::ResourceType type, + bool observable, + uint16_t instance_id, + bool external_blockwise_store) +{ + return m2mobjectinstance_stub::create_resource_instance; +} + +bool M2MObjectInstance::remove_resource(const String &) +{ + return m2mobjectinstance_stub::bool_value; +} + +bool M2MObjectInstance::remove_resource(const char *resource_name) +{ + return m2mobjectinstance_stub::bool_value; +} + +bool M2MObjectInstance::remove_resource_instance(const String &, uint16_t) +{ + return m2mobjectinstance_stub::bool_value; +} + +M2MResource* M2MObjectInstance::resource(const String &) const +{ + return m2mobjectinstance_stub::resource; +} + +M2MResource* M2MObjectInstance::resource(const char *resource_name) const +{ + return m2mobjectinstance_stub::resource; +} + +const M2MResourceList& M2MObjectInstance::resources() const +{ + return m2mobjectinstance_stub::resource_list; +} + +uint16_t M2MObjectInstance::resource_count() const +{ + return m2mobjectinstance_stub::int_value; +} + +uint16_t M2MObjectInstance::resource_count(const String& ) const +{ + return m2mobjectinstance_stub::int_value; +} + +uint16_t M2MObjectInstance::resource_count(const char* ) const +{ + return m2mobjectinstance_stub::int_value; +} + +M2MBase::BaseType M2MObjectInstance::base_type() const +{ + return m2mobjectinstance_stub::base_type; +} + +void M2MObjectInstance::add_observation_level(M2MBase::Observation) +{ +} + +void M2MObjectInstance::remove_observation_level(M2MBase::Observation) +{ +} + +sn_coap_hdr_s* M2MObjectInstance::handle_get_request(nsdl_s *, + sn_coap_hdr_s *, + M2MObservationHandler *) +{ + return m2mobjectinstance_stub::header; +} + +sn_coap_hdr_s* M2MObjectInstance::handle_put_request(nsdl_s *, + sn_coap_hdr_s *, + M2MObservationHandler *, + bool &) +{ + return m2mobjectinstance_stub::header; +} + +sn_coap_hdr_s* M2MObjectInstance::handle_post_request(nsdl_s *, + sn_coap_hdr_s *, + M2MObservationHandler *, + bool &execute, + sn_nsdl_addr_s *) +{ + execute = m2mobjectinstance_stub::bool_value; + return m2mobjectinstance_stub::header; +} + +void M2MObjectInstance::notification_update(M2MBase::Observation) +{ +}