aboutsummaryrefslogtreecommitdiff
path: root/tests/test-device.cc
Commit message (Collapse)AuthorAgeFilesLines
* explicitly cast integral values to the correct type when passing them to a ↵Charles Kerr2012-11-161-4/+4
| | | | varargs function.
* modify DeviceTest.Labels s.t. it fails (currently failing) if the 'short' ↵Charles Kerr2012-11-071-1/+1
| | | | string for an AC Adapter is nonempty.
* in TestDevice.ChoosePrimary, add another test (currently failing) to confirm ↵Charles Kerr2012-11-061-0/+1
| | | | that when indicator-datetime is choosing from devices that are neither charging nor discharging, batteries are more interesting than other devices, and other devices are more interesting than UP_DEVICE_KIND_LINE_POWER
* add unit test (currently failing) to test for the bug reported in LP bug ↵Charles Kerr2012-11-061-11/+15
| | | | #1075192
* in TestDevice, make the log variable names a little more consistentCharles Kerr2012-10-281-14/+14
|
* set DeviceTest's gwarning/gcritical log func to one that prints no messages ↵Charles Kerr2012-10-281-0/+31
| | | | but accumulates the log count. This way we can both (a) silence in-console warnings that look like bugs in the test but are actually desirable warnings generated by fuzz testing, and (b) assert that we get exactly as many warnings/criticals as we expect to get.
* expand DeviceTest.ChoosePrimary to test choosing from a wider variety of ↵Charles Kerr2012-10-281-67/+44
| | | | device states.
* add test (currently failing) to detect the logic error reported in bug #1071757Charles Kerr2012-10-261-0/+16
|
* fix comment typoCharles Kerr2012-10-261-1/+1
|
* Select the primary device based on the spec's criteria. Add tests to confirm.Charles Kerr2012-10-261-0/+75
|
* the device kind string wasn't being used in some icon names.Charles Kerr2012-10-251-145/+196
|
* when discharging the battery, prefer the percent-charged icons over the ↵Charles Kerr2012-10-031-7/+15
| | | | full,good,low icons because the former show a more accurate view of the charge.
* copyediting: text formatting to make the icon list more readableCharles Kerr2012-09-051-3/+6
|
* reimplement indicator_power_device_get_icon_names() since our CA is ↵Charles Kerr2012-06-061-17/+17
| | | | incompatible with reusing code from GSD.
* use C++-style comments in test-device.ccCharles Kerr2012-06-011-32/+32
|
* In indicator_power_device_get_time_details(), add a test for non-devices ↵Charles Kerr2012-06-011-1/+13
| | | | being passed in.
* Fix edge case in indicator_power_device_get_icon_names() that returned a bad ↵Charles Kerr2012-06-011-0/+3
| | | | value if the caller passed in a NULL pointer as a device. Added regression test.
* Add coverage test for AC Adapters in indicator_power_device_get_time_details()Charles Kerr2012-06-011-0/+8
|
* Add unit tests for indicator_power_device_get_time_details()Charles Kerr2012-06-011-2/+87
|
* remove IndicatorPowerDevice's now-unused device icon string.Charles Kerr2012-05-311-12/+0
|
* Add indicator_power_device_get_icon_names().Charles Kerr2012-05-311-5/+196
| | | | | | | The main goal of this change is to make it possible to test the device's icon. A secondary goal is to clarify in the code how indicator-power's icons differ from the ones recommended by GSD.
* call g_object_run_dispose() in a standalone test to get coverage on the NULL ↵Charles Kerr2012-05-261-0/+1
| | | | / non-NULL branches of dispose()'s g_clear_pointer() calls
* ah, c++ is too smart for the last commit's implicit conversion.Charles Kerr2012-05-241-1/+1
|
* test passing bad non-NULL pointers to Device's accessorsCharles Kerr2012-05-241-6/+16
|
* add unit tests confirming that the device accessor functions won't crash ↵Charles Kerr2012-05-241-0/+14
| | | | when you pass NULL for the device
* remove the tests that attempted to exercise the code removed in r151Charles Kerr2012-05-241-33/+2
|
* add unit tests for getting/setting device propertiesCharles Kerr2012-05-241-0/+90
|
* remove the g_clear_pointer() calls s.t. things will build and run on ↵Charles Kerr2012-05-241-4/+4
| | | | alesage's Jenkins setup running Precise
* add private container struct IndicatorPowerDeviceCharles Kerr2012-05-241-0/+99