trunk-tracking: update from r3895 to r3924

This commit is contained in:
Jud Porter
2014-04-08 14:51:04 -04:00
parent c2d07a8d5a
commit 2358f957cb
3 changed files with 40 additions and 1 deletions
+39
View File
@@ -1123,6 +1123,45 @@ http_proxy=$SECONDARY_HOSTNAME fetch_until $PROXIED_IMAGE \
WGET_ARGS=""
# TODO(jud): Enable this test when support for the admin page has been added.
# start_test ShowCache without URL gets a form, inputs, preloaded UA.
# ADMIN_CACHE=$PRIMARY_SERVER/pagespeed_admin/cache
# OUT=$($WGET_DUMP $ADMIN_CACHE)
# check_from "$OUT" fgrep -q "<form "
# check_from "$OUT" fgrep -q "<input "
# check_from "$OUT" fgrep -q "Cache-Control: max-age=0, no-cache"
# # Preloaded user_agent value field leading with "Mozilla" set in
# # ../automatic/system_test_helpers.sh to help test a "normal" flow.
# check_from "$OUT" fgrep -q 'name=user_agent value="Mozilla'
#
# start_test ShowCache with bogus URL gives a 404
# wget $PRIMARY_SERVER/pagespeed_cache?url=bogus_format >& /dev/null
# check [ $? = 8 ]
#
# start_test ShowCache with valid, present URL, with unique options.
# options="PageSpeedImageInlineMaxBytes=6765"
# fetch_until -save $EXAMPLE_ROOT/rewrite_images.html?$options \
# 'grep -c Puzzle\.jpg\.pagespeed\.ic\.' 1
# URL_TAIL=$(grep Puzzle $FETCH_UNTIL_OUTFILE | cut -d \" -f 2)
# SHOW_CACHE_URL=$EXAMPLE_ROOT/$URL_TAIL
# SHOW_CACHE_QUERY=$ADMIN_CACHE?url=$SHOW_CACHE_URL\&$options
# OUT=$($WGET_DUMP $SHOW_CACHE_QUERY)
# check_from "$OUT" fgrep -q cache_ok:true
# check_from "$OUT" fgrep -q mod_pagespeed_example/images/Puzzle.jpg
#
# function show_cache_after_flush() {
# start_test ShowCache with same URL and matching options misses after flush
# OUT=$($WGET_DUMP $SHOW_CACHE_QUERY)
# check_from "$OUT" fgrep -q cache_ok:false
# }
#
# on_cache_flush show_cache_after_flush
#
# start_test ShowCache with same URL but new options misses.
# options="PageSpeedImageInlineMaxBytes=6766"
# OUT=$($WGET_DUMP $ADMIN_CACHE?url=$SHOW_CACHE_URL\&$options)
# check_from "$OUT" fgrep -q cache_ok:false
# This is dependent upon having a /ngx_pagespeed_beacon handler.
test_filter add_instrumentation beacons load.
-1
View File
@@ -42,7 +42,6 @@ http {
pagespeed UsePerVHostStatistics on;
pagespeed InPlaceResourceOptimization on;
pagespeed CreateSharedMemoryMetadataCache "@@SHM_CACHE@@" 8192;
pagespeed PreserveUrlRelativity on;
pagespeed BlockingRewriteKey psatest;
# CriticalImagesBeaconEnabled is now on by default, but we disable in testing.