xmpp/sasl_test.go
author Chris Jones <chris@cjones.org>
Mon, 30 Sep 2013 20:33:50 -0600
changeset 164 6b527647086c
parent 143 62166e57800e
permissions -rw-r--r--
Changed order of operations in setError() so that the underlying error is reported.

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)
}