If you want to verify if “all users get the same cached content”, req.digest might be the variable you are looking for.
In vcl_deliver, do
set resp.http.x-cache-key = req.digest;
then you can see if the key is the same of not. Here is the fiddle.