format, tests
This commit is contained in:
parent
c079f0dace
commit
a6ef43c637
|
@ -181,8 +181,7 @@ func (srs *StandardRicochetService) OnFailedError(oc *OpenConnection, channelID
|
|||
oc.RejectOpenChannel(channelID, "FailedError")
|
||||
}
|
||||
|
||||
// Getters
|
||||
|
||||
// RGetServerHostname returns the generated tor hostname from the private key
|
||||
func (srs *StandardRicochetService) GetServerHostname() string {
|
||||
return srs.serverHostname
|
||||
}
|
|
@ -105,3 +105,14 @@ func TestServerCouldNotConnect(t *testing.T) {
|
|||
t.Errorf("Should not have been been able to connect to 127.0.0.1:65535|kwke2hntvyfqm7dr")
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetServerHostname(t *testing.T) {
|
||||
ricochetService := new(TestService)
|
||||
err := ricochetService.Init("./private_key")
|
||||
if err != nil {
|
||||
t.Errorf("Could not initate ricochet service: %v", err)
|
||||
}
|
||||
if ricochetService.GetServerHostname() != "kwke2hntvyfqm7dr" {
|
||||
t.Errorf("GetServerHostname did not return expected 'kwke2hntvyfqm7dr'")
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue