Yes, you can read a document while it's locked for writing (though, obviously, you'd be looking at the last changed version of it and it wouldn't reflect any changes made by whoever is writing to it). Moving the document does not lock it but it may lock folders in its path.
As for testing, you can get a longer running lock if you open the document in the web or Windows clients and change a metadata field. That acquires a write lock on the document and holds it until the user saves their changes or the session is disconnected. It's not any different than Workflow locking the document, but it does keep it locked while you have changes pending, so it gives you time to experiment.
The server does not time out locks. The locks stays until the caller releases it or the session is disconnected. Any attempts to lock the document would get a 9014 ("object is locked") error and it would be on the calling app to give up or implement a retry policy since it would be dependent on their intent. For ex, the web and Windows clients return the error to the user, while Workflow will set the document aside and try again later a few times. This is done to manage the user experience (fail fast when there's a user looking and let them choose when/if retry is needed versus trying to manage the error as much as possible in order to move their workflow forward).