this._assertSirenQuery(config, escaped, "/[a-z]\\/[123]/");
final Query escaped2 = new NodeRegexpQuery(new Term(df, "[a-z]\\*[123]"));
this._assertSirenQuery(config, escaped2, "/[a-z]\\*[123]/");
final HashMap<String, Analyzer> dtAnalyzers = new HashMap<String, Analyzer>();
dtAnalyzers.put(XSDDatatype.XSD_STRING, new WhitespaceAnalyzer(LuceneTestCase.TEST_VERSION_CURRENT));
config.put(KeywordConfigurationKeys.DATATYPES_ANALYZERS, dtAnalyzers);
final NodeBooleanQuery complex = new NodeBooleanQuery();
complex.add(new NodeRegexpQuery(new Term(df, "[a-z]\\/[123]")), NodeBooleanClause.Occur.MUST);
complex.add(new NodeTermQuery(new Term(df, "/etc/init.d/")), Occur.MUST);
complex.add(new NodeTermQuery(new Term(df, "/etc/init[.]d/lucene/")), Occur.SHOULD);