Created
December 7, 2012 20:31
-
-
Save logicbomb/4236277 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//set up fake it easy | |
var authService = A.Fake<IAuthenticationService>(); | |
var connFactory = A.Fake<IDbConnectionFactory>(); | |
var publisher = A.Fake<IPublisher>(); | |
var identity = A.Fake<IUserIdentity>(); | |
A.CallTo(() => identity.Claims).Returns(new List<string> {"Admin"}); | |
A.CallTo(() => identity.UserName).Returns("[email protected]"); | |
A.CallTo(()=>authService("[email protected]", "password")).Returns(new User{Id=1, Claims=new List<string> {"admin"}); | |
A.CallTo(() => _authenticationService.GetUserFromIdentifier(Guid.Empty, null)) | |
.WithAnyArguments() | |
.Returns(identity); | |
// set up forms auth | |
var cryptographyConfiguration = new CryptographyConfiguration(new RijndaelEncryptionProvider(new PassphraseKeyGenerator("SuperSecretPass", new byte[] {1, 2, 3, 4, 5, 6, 7, 8}, 1000)), DefaultHmacProvider(new PassphraseKeyGenerator("UberSuperSecure", new byte[] {1, 2, 3, 4, 5, 6, 7, 8}, 1000)); | |
var config = new FormsAuthenticationConfiguration() | |
{ | |
CryptographyConfiguration = cryptographyConfiguration, | |
RedirectUrl = "/login", | |
UserMapper = _authenticationService, | |
}; | |
FormsAuthentication.Enable(A.Fake<IPipelines>(), config); | |
//bootstrap and browse | |
var bootstrapper = new ConfigurableBootstrapper(c => { | |
// I'm not sure what DisableAutoRegistration is all about, nothing is changes whether or not it's called | |
//c.DisableAutoRegistration(); | |
c.Dependency<ICommandPublisher>(publisher); | |
c.Dependency<IDbConnectionFactory>(connFactory); | |
c.Dependency<IAuthenticationService>(authService); | |
c.Modules(new Type[] { typeof(LoginModule) }); | |
}); | |
bootstrapper.Initialise(); | |
var browser = new Browser(bootstrapper); | |
var response = browser.Post("/login", with => { | |
with.HttpRequest(); | |
with.FormValue("Email", "[email protected]"); | |
with.FormValue("Password", "password"); | |
}).Then.Get("/some-page-that-requires-admin-claims"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
And here is the EncryptAndSignCookie method