File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
describe 'postgresql::server' do
6
6
let ( :pp ) do
7
+ ENV [ 'RSPEC_DEBUG' ] = 'yes'
7
8
<<-MANIFEST
8
9
class { 'postgresql::globals':
9
10
encoding => 'UTF8',
@@ -15,7 +16,14 @@ class { 'postgresql::server': }
15
16
16
17
it 'with defaults' do
17
18
export_locales ( 'en_NG.UTF8' )
18
- idempotent_apply ( pp )
19
+ idempotent_apply ( pp , debug : true )
20
+ puts '-------------------------------'
21
+ puts LitmusHelper . instance . run_shell ( 'netstat -lntp' ) . stdout
22
+ puts '-------------------------------'
23
+ puts LitmusHelper . instance . run_shell ( 'journalctl -u postgresql' ) . stdout
24
+ puts '-------------------------------'
25
+ puts LitmusHelper . instance . run_shell ( 'systemctl status postgresql*' ) . stdout
26
+ puts '-------------------------------'
19
27
expect ( port ( 5432 ) ) . to be_listening
20
28
expect ( psql ( '--command="\l" postgres' , 'postgres' ) . stdout ) . to match ( %r{List of databases} )
21
29
expect ( psql ( '--command="SELECT pg_encoding_to_char(encoding) FROM pg_database WHERE datname=\'template1\'"' ) . stdout ) . to match ( %r{UTF8} )
You can’t perform that action at this time.
0 commit comments