@Test
public void testQueryOnIgnoredExistingProperty() throws Exception {
NodeState root = mock(NodeState.class);
when(root.getNames(any(String.class))).thenReturn(Collections.<String>emptySet());
SelectorImpl selector = new SelectorImpl(root, "a");
SolrServer solrServer = TestUtils.createSolrServer();
SolrInputDocument document = new SolrInputDocument();
document.addField("path_exact", "/a/b");
document.addField("name", "hello");