aboutsummaryrefslogtreecommitdiff
path: root/tests/test_install_component_functions.py
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2018-08-18 21:49:27 +0100
committerMarco Poletti <poletti.marco@gmail.com>2018-08-18 21:49:27 +0100
commit3c9c517cd469d8e3caf1f27b581432fbeccdd0bf (patch)
tree0546930b051050bee28471e5eef598f065bd4887 /tests/test_install_component_functions.py
parent45abc5865c967100e72e603102ceb6393a7530ea (diff)
downloadgoogle-fruit-3c9c517cd469d8e3caf1f27b581432fbeccdd0bf.tar.gz
Add a PartialComponent::installComponentFunctions() method that allows to install a variable number of components (typically by expanding a template parameter pack).
Diffstat (limited to 'tests/test_install_component_functions.py')
-rwxr-xr-xtests/test_install_component_functions.py357
1 files changed, 357 insertions, 0 deletions
diff --git a/tests/test_install_component_functions.py b/tests/test_install_component_functions.py
new file mode 100755
index 0000000..ff3931e
--- /dev/null
+++ b/tests/test_install_component_functions.py
@@ -0,0 +1,357 @@
+#!/usr/bin/env python3
+# Copyright 2016 Google Inc. All Rights Reserved.
+#
+# 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.
+
+from fruit_test_common import *
+
+COMMON_DEFINITIONS = '''
+ #include "test_common.h"
+
+ struct X;
+
+ struct Annotation1 {};
+ using XAnnot1 = fruit::Annotated<Annotation1, X>;
+ '''
+
+def test_install_component_functions_deduped_against_previous_install_no_args():
+ source = '''
+ int num_executions = 0;
+
+ fruit::Component<int> getChildComponent() {
+ static int n = 5;
+ ++num_executions;
+ return fruit::createComponent()
+ .bindInstance(n);
+ }
+
+ fruit::Component<> getMiddleComponent() {
+ return fruit::createComponent()
+ .install(getChildComponent);
+ }
+
+ fruit::Component<int> getMainComponent() {
+ return fruit::createComponent()
+ .install(getMiddleComponent)
+ .installComponentFunctions(fruit::componentFunction(getChildComponent));
+ }
+
+ int main() {
+ fruit::Injector<int> injector(getMainComponent);
+ int n = injector.get<int>();
+ Assert(n == 5);
+ Assert(num_executions == 1);
+ }
+ '''
+ expect_success(
+ COMMON_DEFINITIONS,
+ source,
+ locals())
+
+def test_install_component_functions_deduped_against_following_install_no_args():
+ source = '''
+ int num_executions = 0;
+
+ fruit::Component<int> getChildComponent() {
+ static int n = 5;
+ ++num_executions;
+ return fruit::createComponent()
+ .bindInstance(n);
+ }
+
+ fruit::Component<> getMiddleComponent() {
+ return fruit::createComponent()
+ .installComponentFunctions(fruit::componentFunction(getChildComponent));
+ }
+
+ fruit::Component<int> getMainComponent() {
+ return fruit::createComponent()
+ .install(getMiddleComponent)
+ .install(getChildComponent);
+ }
+
+ int main() {
+ fruit::Injector<int> injector(getMainComponent);
+ int n = injector.get<int>();
+ Assert(n == 5);
+ Assert(num_executions == 1);
+ }
+ '''
+ expect_success(
+ COMMON_DEFINITIONS,
+ source,
+ locals())
+
+def test_install_component_functions_deduped_against_previous_install_with_args():
+ source = '''
+ int num_executions = 0;
+
+ fruit::Component<int> getChildComponent(int) {
+ static int n = 5;
+ ++num_executions;
+ return fruit::createComponent()
+ .bindInstance(n);
+ }
+
+ fruit::Component<> getMiddleComponent() {
+ return fruit::createComponent()
+ .install(getChildComponent, 42);
+ }
+
+ fruit::Component<int> getMainComponent() {
+ return fruit::createComponent()
+ .install(getMiddleComponent)
+ .installComponentFunctions(fruit::componentFunction(getChildComponent, 42));
+ }
+
+ int main() {
+ fruit::Injector<int> injector(getMainComponent);
+ int n = injector.get<int>();
+ Assert(n == 5);
+ Assert(num_executions == 1);
+ }
+ '''
+ expect_success(
+ COMMON_DEFINITIONS,
+ source,
+ locals())
+
+def test_install_component_functions_deduped_against_following_install_with_args():
+ source = '''
+ int num_executions = 0;
+
+ fruit::Component<int> getChildComponent(int) {
+ static int n = 5;
+ ++num_executions;
+ return fruit::createComponent()
+ .bindInstance(n);
+ }
+
+ fruit::Component<> getMiddleComponent() {
+ return fruit::createComponent()
+ .installComponentFunctions(fruit::componentFunction(getChildComponent, 42));
+ }
+
+ fruit::Component<int> getMainComponent() {
+ return fruit::createComponent()
+ .install(getMiddleComponent)
+ .install(getChildComponent, 42);
+ }
+
+ int main() {
+ fruit::Injector<int> injector(getMainComponent);
+ int n = injector.get<int>();
+ Assert(n == 5);
+ Assert(num_executions == 1);
+ }
+ '''
+ expect_success(
+ COMMON_DEFINITIONS,
+ source,
+ locals())
+
+def test_install_component_functions_same_as_with_previous_install_with_different_args():
+ source = '''
+ int num_executions = 0;
+
+ fruit::Component<int> getChildComponent(int) {
+ static int n = 5;
+ ++num_executions;
+ return fruit::createComponent()
+ .bindInstance(n);
+ }
+
+ fruit::Component<> getMiddleComponent() {
+ return fruit::createComponent()
+ .install(getChildComponent, 42);
+ }
+
+ fruit::Component<int> getMainComponent() {
+ return fruit::createComponent()
+ .install(getMiddleComponent)
+ .installComponentFunctions(fruit::componentFunction(getChildComponent, 2));
+ }
+
+ int main() {
+ fruit::Injector<int> injector(getMainComponent);
+ int n = injector.get<int>();
+ Assert(n == 5);
+ Assert(num_executions == 2);
+ }
+ '''
+ expect_success(
+ COMMON_DEFINITIONS,
+ source,
+ locals())
+
+def test_install_component_functions_same_as_following_install_with_different_args():
+ source = '''
+ int num_executions = 0;
+
+ fruit::Component<int> getChildComponent(int) {
+ static int n = 5;
+ ++num_executions;
+ return fruit::createComponent()
+ .bindInstance(n);
+ }
+
+ fruit::Component<> getMiddleComponent() {
+ return fruit::createComponent()
+ .installComponentFunctions(fruit::componentFunction(getChildComponent, 42));
+ }
+
+ fruit::Component<int> getMainComponent() {
+ return fruit::createComponent()
+ .install(getMiddleComponent)
+ .install(getChildComponent, 2);
+ }
+
+ int main() {
+ fruit::Injector<int> injector(getMainComponent);
+ (void)injector;
+ Assert(num_executions == 2);
+ }
+ '''
+ expect_success(
+ COMMON_DEFINITIONS,
+ source,
+ locals())
+
+def test_install_component_functions_no_component_functions():
+ source = '''
+ fruit::Component<> getComponent() {
+ return fruit::createComponent()
+ .installComponentFunctions();
+ }
+
+ int main() {
+ fruit::Injector<> injector(getComponent);
+ (void)injector;
+ }
+ '''
+ expect_success(COMMON_DEFINITIONS, source)
+
+def test_install_component_functions_one_component_function():
+ source = '''
+ struct X {
+ int n;
+ X(int n) : n(n) {}
+ };
+
+ fruit::Component<X> getParentComponent(std::string) {
+ return fruit::createComponent()
+ .registerProvider([]() { return X(5); });
+ }
+
+ fruit::Component<X> getComponent() {
+ return fruit::createComponent()
+ .installComponentFunctions(fruit::componentFunction(getParentComponent, std::string("Hello")));
+ }
+
+ int main() {
+ fruit::Injector<X> injector(getComponent);
+ X x = injector.get<X>();
+ Assert(x.n == 5);
+ }
+ '''
+ expect_success(COMMON_DEFINITIONS, source)
+
+def test_install_component_functions_two_component_functions():
+ source = '''
+ struct X {
+ int n;
+ X(int n) : n(n) {}
+ };
+
+ struct Y {
+ int n;
+ Y(int n) : n(n) {}
+ };
+
+ fruit::Component<X> getParentComponent1(std::string) {
+ return fruit::createComponent()
+ .registerProvider([]() { return X(5); });
+ }
+
+ fruit::Component<Y> getParentComponent2(std::string) {
+ return fruit::createComponent()
+ .registerProvider([]() { return Y(42); });
+ }
+
+ fruit::Component<X, Y> getComponent() {
+ return fruit::createComponent()
+ .installComponentFunctions(
+ fruit::componentFunction(getParentComponent1, std::string("Hello")),
+ fruit::componentFunction(getParentComponent2, std::string("World")));
+ }
+
+ int main() {
+ fruit::Injector<X, Y> injector(getComponent);
+ X x = injector.get<X>();
+ Y y = injector.get<Y>();
+ Assert(x.n == 5);
+ Assert(y.n == 42);
+ }
+ '''
+ expect_success(COMMON_DEFINITIONS, source)
+
+def test_install_component_functions_with_template_parameter_pack_unpacking():
+ source = '''
+ template <typename T>
+ struct GetComponentHolder;
+
+ struct X {
+ int n;
+ X(int n) : n(n) {}
+ };
+
+ struct Y {
+ int n;
+ Y(int n) : n(n) {}
+ };
+
+ template <>
+ struct GetComponentHolder<X> {
+ static fruit::Component<X> getComponent(std::string) {
+ return fruit::createComponent()
+ .registerProvider([]() { return X(5); });
+ }
+ };
+
+ template <>
+ struct GetComponentHolder<Y> {
+ static fruit::Component<Y> getComponent(std::string) {
+ return fruit::createComponent()
+ .registerProvider([]() { return Y(42); });
+ }
+ };
+
+ template <typename... Ts>
+ fruit::Component<Ts...> getComponent() {
+ return fruit::createComponent()
+ .installComponentFunctions(
+ fruit::componentFunction(GetComponentHolder<Ts>::getComponent, std::string("Hello"))...);
+ }
+
+ int main() {
+ fruit::Injector<X, Y> injector(getComponent<X, Y>);
+ X x = injector.get<X>();
+ Y y = injector.get<Y>();
+ Assert(x.n == 5);
+ Assert(y.n == 42);
+ }
+ '''
+ expect_success(COMMON_DEFINITIONS, source)
+
+if __name__== '__main__':
+ main(__file__)