summaryrefslogtreecommitdiffstats
path: root/src/example
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2017-05-31 21:10:43 -0400
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2017-06-19 16:28:05 -0400
commitec2ed2fb324d92573418afcc17365c83373023ec (patch)
treef166bc01eb1c33cf73144fb487629082b5aeb508 /src/example
parentbabf3b78deb58a2f40e405713f5ceb1485457529 (diff)
downloadphosphor-dbus-monitor-ec2ed2fb324d92573418afcc17365c83373023ec.tar.gz
phosphor-dbus-monitor-ec2ed2fb324d92573418afcc17365c83373023ec.zip
Fix bool and string templates/rendering
Fix a number of bugs related to rendering and instantiation of string and bool templates. Change-Id: Ic75842b4016f4d96bf5850f9c4ad778d82e075ed Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'src/example')
-rw-r--r--src/example/test.yaml408
1 files changed, 408 insertions, 0 deletions
diff --git a/src/example/test.yaml b/src/example/test.yaml
new file mode 100644
index 0000000..1ba22a4
--- /dev/null
+++ b/src/example/test.yaml
@@ -0,0 +1,408 @@
+# Test PDM configuration file. This file validates that all
+# possible configuration file directives result in an application
+# that builds. For an example with documentation please see
+# example.yaml
+
+- name: test path group
+ class: group
+ group: path
+ members:
+ - meta: PATH
+ path: /xyz/openbmc_project/testing/inst1
+ - meta: PATH
+ path: /xyz/openbmc_project/testing/inst2
+ - meta: PATH
+ path: /xyz/openbmc_project/testing/inst3
+ - meta: PATH
+ path: /xyz/openbmc_project/testing/inst4
+
+- name: test byte property group
+ class: group
+ group: property
+ type: byte
+ members:
+ - interface: xyz.openbmc_project.byteIface
+ meta: PROPERTY
+ property: byteValue
+
+- name: test u16 property group
+ class: group
+ group: property
+ type: uint16
+ members:
+ - interface: xyz.openbmc_project.U16Iface
+ meta: PROPERTY
+ property: u16Value
+
+- name: test u32 property group
+ class: group
+ group: property
+ type: uint32
+ members:
+ - interface: xyz.openbmc_project.U32Iface
+ meta: PROPERTY
+ property: u32Value
+
+- name: test u64 property group
+ class: group
+ group: property
+ type: uint64
+ members:
+ - interface: xyz.openbmc_project.U64Iface
+ meta: PROPERTY
+ property: u64Value
+
+- name: test s16 property group
+ class: group
+ group: property
+ type: int16
+ members:
+ - interface: xyz.openbmc_project.S16Iface
+ meta: PROPERTY
+ property: s16Value
+
+- name: test s32 property group
+ class: group
+ group: property
+ type: int32
+ members:
+ - interface: xyz.openbmc_project.S32Iface
+ meta: PROPERTY
+ property: s32Value
+
+- name: test s64 property group
+ class: group
+ group: property
+ type: int64
+ members:
+ - interface: xyz.openbmc_project.S64Iface
+ meta: PROPERTY
+ property: s64Value
+
+- name: test string property group
+ class: group
+ group: property
+ type: string
+ members:
+ - interface: xyz.openbmc_project.StringIface
+ meta: PROPERTY
+ property: StringValue
+
+- name: test bool property group
+ class: group
+ group: property
+ type: boolean
+ members:
+ - interface: xyz.openbmc_project.BoolIface
+ meta: PROPERTY
+ property: BoolValue
+
+- name: test byte watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test byte property group
+
+- name: test u16 watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test u16 property group
+
+- name: test u32 watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test u32 property group
+
+- name: test u64 watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test u64 property group
+
+- name: test s16 watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test s16 property group
+
+- name: test s32 watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test s32 property group
+
+- name: test s64 watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test s64 property group
+
+- name: test bool watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test bool property group
+
+- name: test string watch
+ class: watch
+ watch: property
+ paths: test path group
+ properties: test string property group
+
+- name: test byte journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test byte property group
+ severity: DEBUG
+ message: Testing...
+
+- name: test u16 journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test u16 property group
+ severity: INFO
+ message: Testing...
+
+- name: test u32 journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test u32 property group
+ severity: NOTICE
+ message: Testing...
+
+- name: test u64 journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test u64 property group
+ severity: WARNING
+ message: Testing...
+
+- name: test s16 journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test s16 property group
+ severity: ERR
+ message: Testing...
+
+- name: test s32 journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test s32 property group
+ severity: CRIT
+ message: Testing...
+
+- name: test s64 journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test s64 property group
+ severity: ALERT
+ message: Testing...
+
+- name: test bool journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test bool property group
+ severity: EMERG
+ message: Testing...
+
+- name: test string journal
+ class: callback
+ callback: journal
+ paths: test path group
+ properties: test string property group
+ severity: INFO
+ message: Testing...
+
+- name: test method
+ class: callback
+ callback: method
+ service: org.test
+ path: /test
+ interface: org.test
+ method: Test
+ args:
+ - value: 123
+ type: string
+ - value: false
+ type: boolean
+ - value: true
+ type: boolean
+ - value: 123
+ type: byte
+ - value: 123
+ type: uint16
+ - value: 123
+ type: uint32
+ - value: 123
+ type: uint64
+ - value: 123
+ type: int16
+ - value: 123
+ type: int32
+ - value: 123
+ type: int64
+
+- name: test count lt
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test byte property group
+ callback: test method
+ countop: '<'
+ countbound: 3
+ op: '<'
+ bound: 115
+
+- name: test count lte
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test byte property group
+ callback: test method
+ defer: 1000us
+ countop: '<='
+ countbound: 3
+ op: '<='
+ bound: 115
+
+- name: test count gt
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test byte property group
+ defer: 1000us
+ callback: test method
+ countop: '>'
+ countbound: 3
+ op: '>'
+ bound: 115
+
+- name: test count gte
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test byte property group
+ defer: 1000us
+ callback: test method
+ countop: '>='
+ countbound: 3
+ op: '>='
+ bound: 115
+
+- name: test count eq
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test byte property group
+ defer: 1000us
+ callback: test method
+ countop: '=='
+ countbound: 3
+ op: '=='
+ bound: 115
+
+- name: test count neq
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test byte property group
+ defer: 1000us
+ callback: test method
+ countop: '!='
+ countbound: 3
+ op: '!='
+ bound: 115
+
+- name: test count u16
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test u16 property group
+ defer: 1000us
+ callback: test method
+ countop: '=='
+ countbound: 3
+ op: '=='
+ bound: 115
+
+- name: test count u32
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test u32 property group
+ defer: 1000us
+ callback: test method
+ countop: '=='
+ countbound: 3
+ op: '=='
+ bound: 115
+
+- name: test count u64
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test u64 property group
+ defer: 1000us
+ callback: test method
+ countop: '=='
+ countbound: 3
+ op: '=='
+ bound: 115
+
+- name: test count s16
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test s16 property group
+ defer: 1000us
+ callback: test method
+ countop: '=='
+ countbound: 3
+ op: '=='
+ bound: 115
+
+- name: test count s32
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test s32 property group
+ defer: 1000us
+ callback: test method
+ countop: '=='
+ countbound: 3
+ op: '=='
+ bound: 115
+
+- name: test count s64
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test s64 property group
+ defer: 1000us
+ callback: test method
+ countop: '=='
+ countbound: 3
+ op: '=='
+ bound: 115
+
+- name: test count bool
+ class: condition
+ condition: count
+ paths: test path group
+ properties: test bool property group
+ defer: 1000us
+ callback: test method
+ countop: '=='
+ countbound: 3
+ op: '=='
+ bound: false
OpenPOWER on IntegriCloud