Lines Matching refs:output

151                 o = self.output
163 o = self.output
175 self.assertTrue(" refresh" not in self.output)
179 self.assertTrue(" refresh" in self.output)
186 o = self.output
187 # Ensure that the first item in history output is now
201 o = self.output
227 o = self.output
286 o = self.output
311 o = self.output
319 """Verify limiting the number of records to output
329 self.assertEqual(len(self.output.splitlines()), 3)
332 lines = self.output.splitlines()
341 self.assertEqual(len(self.output.splitlines()), count)
348 arr = self.output.split()
355 # Ensure we can obtain output for each column
361 self.assertTrue(self.output)
363 # the -o output matches that field in the normal
364 # output.
366 self.assertTrue(self.output.strip() == known[col],
367 "{0} column output {1} does not match {2}".format(
368 col, self.output, known[col]))
374 output = self.output.splitlines()
379 for line in output:
392 arr = self.output.splitlines()
417 output = self.output.splitlines()
418 self.assertTrue(len(output) == expected_count,
420 len(output)))
422 for line in output:
434 # only output history for one instance of each timestamp
437 output = self.output.splitlines()
438 self.assertTrue(len(output) == expected_count,
440 len(output)))
446 entire_output = self.output
452 self.assertTrue(entire_output == self.output,
454 entire_output, self.output))
459 # of history output
474 single_entry_output = self.output
476 self.assertTrue(single_entry_output == self.output,
477 "{0} does not equal {1}".format(single_entry_output, self.output))
501 range_lines = self.output.splitlines()
504 self.assertTrue(len(range_lines) >= 1, "No output from pkg history"
507 # for each history line in the range output, ensure that it
508 # matches timestamps that we stored from the main history output
516 # list of ranges we expect taken from the entire history output,
528 "in output:\n"
530 "Range output {1}\n"
531 "Entire output {2}".format(
573 self.assertTrue("369576:00:00" in self.output)