xmpp/sasl_test.go
author Chris Jones <christian.jones@sri.com>
Sun, 15 Sep 2013 16:18:20 -0600
changeset 148 b1b4900eee5b
parent 143 62166e57800e
permissions -rw-r--r--
Made layers 1 and 3 more modular, shrinking the surface area of the coupling between them.

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