blob: 7e054cef7f00578dd9159d35f87e63f26ae76ec0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential;
import org.apache.tinkerpop.gremlin.structure.Graph;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph;
import org.hamcrest.MatcherAssert;
import org.junit.Test;
import static org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential.CredentialGraph.credentials;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.greaterThan;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNull;
/**
* These tests cover old functionality prior to the new method for DSL implementation.
*
* @author Stephen Mallette (http://stephen.genoprime.com)
* @deprecated As for release 3.3.3, replaced by {@link CredentialTraversalDslTest}.
*/
@Deprecated
public class CredentialGraphTest {
@Test
public void shouldCreateUser() {
final Graph graph = TinkerGraph.open();
final Vertex v = credentials(graph).createUser("stephen", "secret");
assertEquals("stephen", v.value("username"));
assertEquals("user", v.label());
assertNotEquals("secret", v.value("password")); // hashed to something
assertThat(v.value("password").toString().length(), greaterThan(0));
}
@Test
public void shouldRemoveUser() {
final Graph graph = TinkerGraph.open();
MatcherAssert.assertThat(graph.vertices().hasNext(), is(false));
credentials(graph).createUser("stephen", "secret");
MatcherAssert.assertThat(graph.vertices().hasNext(), is(true));
assertEquals(1, credentials(graph).removeUser("stephen"));
MatcherAssert.assertThat(graph.vertices().hasNext(), is(false));
}
@Test
public void shouldNotRemoveUser() {
final Graph graph = TinkerGraph.open();
MatcherAssert.assertThat(graph.vertices().hasNext(), is(false));
credentials(graph).createUser("stephen", "secret");
MatcherAssert.assertThat(graph.vertices().hasNext(), is(true));
assertEquals(0, credentials(graph).removeUser("stephanie"));
MatcherAssert.assertThat(graph.vertices().hasNext(), is(true));
}
@Test
public void shouldFindUser() {
final Graph graph = TinkerGraph.open();
MatcherAssert.assertThat(graph.vertices().hasNext(), is(false));
credentials(graph).createUser("marko", "secret");
final Vertex stephen = credentials(graph).createUser("stephen", "secret");
credentials(graph).createUser("daniel", "secret");
MatcherAssert.assertThat(graph.vertices().hasNext(), is(true));
assertEquals(stephen, credentials(graph).findUser("stephen"));
}
@Test
public void shouldNotFindUser() {
final Graph graph = TinkerGraph.open();
MatcherAssert.assertThat(graph.vertices().hasNext(), is(false));
credentials(graph).createUser("marko", "secret");
credentials(graph).createUser("stephen", "secret");
credentials(graph).createUser("daniel", "secret");
MatcherAssert.assertThat(graph.vertices().hasNext(), is(true));
assertNull(credentials(graph).findUser("stephanie"));
}
@Test
public void shouldCountUsers() {
final Graph graph = TinkerGraph.open();
MatcherAssert.assertThat(graph.vertices().hasNext(), is(false));
credentials(graph).createUser("marko", "secret");
credentials(graph).createUser("stephen", "secret");
credentials(graph).createUser("daniel", "secret");
MatcherAssert.assertThat(graph.vertices().hasNext(), is(true));
assertEquals(3, credentials(graph).countUsers());
}
@Test(expected = IllegalStateException.class)
public void shouldThrowIfFindingMultipleUsers() {
final Graph graph = TinkerGraph.open();
MatcherAssert.assertThat(graph.vertices().hasNext(), is(false));
credentials(graph).createUser("stephen", "secret");
credentials(graph).createUser("stephen", "secret");
MatcherAssert.assertThat(graph.vertices().hasNext(), is(true));
assertNull(credentials(graph).findUser("stephen"));
}
}