| #!/bin/bash |
| # |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| start_test IPRO source map tests |
| URL="$TEST_ROOT/experimental_js_minifier/script.js" |
| URL+="?PageSpeedFilters=rewrite_javascript,include_js_source_maps" |
| # Fetch until IPRO removes comments. |
| fetch_until -save $URL 'grep -c removed' 0 |
| # Yes source_map for external JS |
| check grep -q sourceMappingURL $FETCH_FILE |
| SOURCE_MAP_URL=$(grep sourceMappingURL $FETCH_FILE | grep -o 'http://.*') |
| OUTFILE=$OUTDIR/source_map |
| check $WGET_DUMP -O $OUTFILE $SOURCE_MAP_URL |
| check grep -qi "Cache-control: max-age=31536000" $OUTFILE # Long cache |
| check grep -q "script.js?PageSpeed=off" $OUTFILE # Has source URL. |
| check grep -q '"mappings":' $OUTFILE # Has mappings. |