Solr has the built-in \"Analysis Screen\", which helps to debug the interplay between tokenizers and filters for specific field types:
Analyze API can be used to test the analyzers. It is not so pretty but does the job.
Example
GET localhost:9200/_analyze { "tokenizer" : "keyword", "token_filters" : ["lowercase"], "char_filters" : ["html_strip"], "text" : "this is a test" }