Skip to content

Instantly share code, notes, and snippets.

@thomasdarimont
Last active December 28, 2015 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasdarimont/7464756 to your computer and use it in GitHub Desktop.
Save thomasdarimont/7464756 to your computer and use it in GitHub Desktop.
/*
* Copyright 2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.thomasdarimont.os.mongo.issues;
import org.junit.Assert;
import org.junit.Test;
import com.mongodb.DB;
import com.mongodb.DBAddress;
import com.mongodb.MongoClient;
/**
* @author Thomas Darimont
*/
public class MongoDbJavaDriverAuthTests {
private static final String USERNAME = "testadm";
private static final char[] PASSWORD = USERNAME.toCharArray();
@Test
public void authenticationShouldBePossibleAfterAddUser() throws Exception {
DB db = MongoClient.connect(new DBAddress("localhost", "test"));
db.addUser(USERNAME, PASSWORD); // Doesn't work
// db.eval("db.addUser( { user: 'testadm', pwd: 'testadm', roles: [ 'readWrite', 'dbAdmin' ] } )"); // works
// db.dropUser("testadm") // you have to drop the user manually... since db.removeUser also dosn't work as well.
Assert.assertTrue(db.authenticate(USERNAME, PASSWORD));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment