Short-circuit reads are not on by default. The documentation page you linked to at hadoop.apache.org contains all of the information you need to enable them though.
Regarding checking status of short-circuit read programmatically, here are a few thoughts on this:
Your application could check Configuration for the dfs.client.read.shortcircuit key. This will tell you at a high level if the feature is enabled. However, note that the feature needs to be turned on in configuration for both the DataNode and the HDFS client process. Depending on the details of the deployment, the DataNode and the client might be using different configuration files.
This tells you if the feature is enabled, but it doesnt necessarily tell you if youre really going to get short-circuit reads when you open the file. There might not be a local replica for the block, in which case the read would fall back to the typical remote read behavior anyway.
Depending on what your application wants to achieve, you might also be interested in looking at the FileSystem.listLocatedStatus API to query information about blocks and the corresponding locations of replicas. Applications like MapReduce use this information to try to schedule their work for optimal locality. Short-circuit reads then become a further optimization on top of the gains already achieved by locality. Hope this helps.