mirror of
				https://gogs.blitter.com/RLabs/xs
				synced 2024-08-14 10:26:42 +00:00 
			
		
		
		
	Added session_test.go
Signed-off-by: Russ Magee <rmagee@gmail.com>
This commit is contained in:
		
							parent
							
								
									c7228d3267
								
							
						
					
					
						commit
						50e786e549
					
				
					 1 changed files with 30 additions and 0 deletions
				
			
		
							
								
								
									
										30
									
								
								session_test.go
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								session_test.go
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,30 @@ | |||
| package xs | ||||
| 
 | ||||
| import ( | ||||
| 	"testing" | ||||
| ) | ||||
| 
 | ||||
| func _newMockSession() (s *Session) { | ||||
| 	s = &Session{op: []byte("A"), | ||||
| 		who:        []byte("johndoe"), | ||||
| 		connhost:   []byte("host"), | ||||
| 		termtype:   []byte("vt100"), | ||||
| 		cmd:        []byte("/bin/false"), | ||||
| 		authCookie: []byte("authcookie"), | ||||
| 		status:     0} | ||||
| 	return s | ||||
| } | ||||
| 
 | ||||
| func TestSessionAuthCookieShowTrue(t *testing.T) { | ||||
| 	sess := _newMockSession() | ||||
| 	if string(sess.AuthCookie(true)) != string(sess.authCookie) { | ||||
| 		t.Fatal("Failed to return unredacted authcookie on request") | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| func TestSessionAuthCookieShowFalse(t *testing.T) { | ||||
| 	sess := _newMockSession() | ||||
| 	if string(sess.AuthCookie(false)) != string("**REDACTED**") { | ||||
| 		t.Fatal("Failed to return redacted authcookie on request") | ||||
| 	} | ||||
| } | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue