add formula tests
diff --git a/tests/pillar/sensu_client.sls b/tests/pillar/sensu_client.sls
new file mode 100644
index 0000000..289304b
--- /dev/null
+++ b/tests/pillar/sensu_client.sls
@@ -0,0 +1,14 @@
+sensu:
+ client:
+ enabled: true
+ plugin:
+ monitoring_for_openstack:
+ enabled: true
+ message_queue:
+ engine: rabbitmq
+ host: rabbitmq
+ port: 5672
+ user: monitor
+ password: pwd
+ virtual_host: '/monitor'
+
diff --git a/tests/pillar/sensu_server.sls b/tests/pillar/sensu_server.sls
new file mode 100644
index 0000000..32ce6ab
--- /dev/null
+++ b/tests/pillar/sensu_server.sls
@@ -0,0 +1,37 @@
+sensu:
+ server:
+ enabled: true
+ keepalive_warning: 20
+ keepalive_critical: 60
+ mine_checks: true
+ database:
+ engine: redis
+ host: localhost
+ port: 6379
+ message_queue:
+ engine: rabbitmq
+ host: rabbitmq
+ port: 5672
+ user: monitor
+ password: pwd
+ virtual_host: '/monitor'
+ bind:
+ address: 0.0.0.0
+ port: 4567
+ handler:
+ default:
+ enabled: true
+ set:
+ - mail
+ stdout:
+ enabled: true
+ mail:
+ mail_to: 'mail@domain.cz'
+ host: smtp1.domain.cz
+ port: 465
+ user: 'mail@domain.cz'
+ password: 'pwd'
+ authentication: cram_md5
+ encryption: ssl
+ domain: 'domain.cz'
+
diff --git a/tests/pillar/sensu_uchiwa.sls b/tests/pillar/sensu_uchiwa.sls
new file mode 100644
index 0000000..ad0f7ae
--- /dev/null
+++ b/tests/pillar/sensu_uchiwa.sls
@@ -0,0 +1,10 @@
+sensu:
+ dashboard:
+ enabled: true
+ bind:
+ address: 0.0.0.0
+ port: 8080
+ admin:
+ username: admin
+ password: pass
+