xmpp/sasl_test.go
author Chris Jones <chris@cjones.org>
Wed, 16 Oct 2013 20:41:14 -0600
changeset 169 f59b79d032da
parent 143 62166e57800e
permissions -rw-r--r--
Make an attempt to only close the send channel if it's still open.

package xmpp

import (
	"testing"
)

func TestSaslDigest(t *testing.T) {
	// These values are from RFC2831, section 4.
	obs := saslDigestResponse("chris", "elwood.innosoft.com",
		"secret", "OA6MG9tEQGm2hh", "OA6MHXh6VqTrRk",
		"AUTHENTICATE", "imap/elwood.innosoft.com",
		"00000001")
	exp := "d388dad90d4bbd760a152321f2143af7"
	assertEquals(t, exp, obs)
}