You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@trafficserver.apache.org by GitBox <gi...@apache.org> on 2021/05/24 23:13:37 UTC

[GitHub] [trafficserver] alficles commented on a change in pull request #7870: Add log SQUID code testing to redirect.test.py Au test.

alficles commented on a change in pull request #7870:
URL: https://github.com/apache/trafficserver/pull/7870#discussion_r638347875



##########
File path: tests/gold_tests/redirect/wait_for_log.sh
##########
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you 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.
+
+# A bash script to wait for the log to be present and have a line for each request.  Also changes URL port
+# number to PORT.
+
+WAIT=120 # seconds
+LINES=17
+LOG_FILE=$1
+PORT=$2
+
+while ((WAIT > 0))
+do
+    if [[ -f $LOG_FILE ]] ; then
+        if (( $(wc -l < $LOG_FILE) >= LINES )) ; then
+            sed "s/:$PORT/:PORT/" $LOG_FILE

Review comment:
       These `$LOG_FILE`s need quotes or it'll break if the filename has a space in it for some crazy reason.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org