Change samples to use standard example.com domain name.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1237737 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5f20c97094
commit
32ae33c773
8 changed files with 28 additions and 28 deletions
|
|
@ -29,11 +29,11 @@
|
|||
<h1>Store</h1>
|
||||
<br/>
|
||||
<p>For this sample to work, add the sample domain to your /etc/hosts as follows:<br/>
|
||||
127.0.0.1 sca-store.com jane.sca-store.com joe.sca-store.com</p>
|
||||
127.0.0.1 example.com jane.example.com joe.example.com</p>
|
||||
|
||||
<p/>
|
||||
<p>Jane's store at <a href="http://jane.sca-store.com/">jane.sca-store.com</a>
|
||||
<br/>Joe's store at <a href="http://joe.sca-store.com/">joe.sca-store.com</a></p>
|
||||
<p>Jane's store at <a href="http://jane.example.com/">jane.example.com</a>
|
||||
<br/>Joe's store at <a href="http://joe.example.com/">joe.example.com</a></p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
# under the License.
|
||||
|
||||
# For this test to work, add the test domain to your etc/hosts as follows:
|
||||
# 127.0.0.1 sca-store.com joe.sca-store.com joe.sca-store.com
|
||||
# 127.0.0.1 example.com joe.example.com joe.example.com
|
||||
|
||||
echo "Testing..."
|
||||
here=`echo "import os; print os.path.realpath('$0')" | python`; here=`dirname $here`
|
||||
|
|
@ -29,24 +29,24 @@ curl_prefix=`cat $here/../../modules/http/curl.prefix`
|
|||
sleep 2
|
||||
|
||||
# Test HTTP GET
|
||||
$curl_prefix/bin/curl http://joe.sca-store.com/ 2>/dev/null >tmp/index.html
|
||||
$curl_prefix/bin/curl http://joe.example.com/ 2>/dev/null >tmp/index.html
|
||||
diff tmp/index.html htdocs/domains/joe/index.html
|
||||
rc=$?
|
||||
|
||||
# Test Catalog
|
||||
if [ "$rc" = "0" ]; then
|
||||
$curl_prefix/bin/curl http://joe.sca-store.com/references/Store/catalog -X POST -H "Content-type: application/json-rpc" --data @../store-cpp/htdocs/test/items-request.txt >tmp/items-result.txt 2>/dev/null
|
||||
$curl_prefix/bin/curl http://joe.example.com/references/Store/catalog -X POST -H "Content-type: application/json-rpc" --data @../store-cpp/htdocs/test/items-request.txt >tmp/items-result.txt 2>/dev/null
|
||||
diff tmp/items-result.txt ../store-cpp/htdocs/test/items-result.txt
|
||||
rc=$?
|
||||
fi
|
||||
|
||||
# Test Shopping Cart
|
||||
if [ "$rc" = "0" ]; then
|
||||
$curl_prefix/bin/curl http://joe.sca-store.com/references/Store/shoppingCart -X POST -H "Content-type: application/atom+xml" --data @../store-cpp/htdocs/test/shopping-cart-entry.xml 2>/dev/null
|
||||
$curl_prefix/bin/curl http://joe.example.com/references/Store/shoppingCart -X POST -H "Content-type: application/atom+xml" --data @../store-cpp/htdocs/test/shopping-cart-entry.xml 2>/dev/null
|
||||
rc=$?
|
||||
fi
|
||||
if [ "$rc" = "0" ]; then
|
||||
$curl_prefix/bin/curl http://joe.sca-store.com/references/Store/shoppingCart >tmp/shopping-cart-feed.xml 2>/dev/null
|
||||
$curl_prefix/bin/curl http://joe.example.com/references/Store/shoppingCart >tmp/shopping-cart-feed.xml 2>/dev/null
|
||||
grep "3.55" tmp/shopping-cart-feed.xml >/dev/null
|
||||
rc=$?
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -34,10 +34,10 @@ sudo ../../ubuntu/ip-redirect-all 119 8119
|
|||
sudo ../../ubuntu/ip-redirect-all 563 8563
|
||||
|
||||
# Generate SSL certificates
|
||||
../../modules/http/ssl-ca-conf tmp/ssl sca-store.com
|
||||
../../modules/http/ssl-ca-conf tmp/ssl example.com
|
||||
../../modules/http/ssl-cert-conf tmp/ssl localhost server
|
||||
../../modules/http/ssl-cert-conf tmp/ssl *.sca-store.com vhost
|
||||
../../modules/http/ssl-cert-conf tmp/ssl sca-store.com proxy
|
||||
../../modules/http/ssl-cert-conf tmp/ssl *.example.com vhost
|
||||
../../modules/http/ssl-cert-conf tmp/ssl example.com proxy
|
||||
../../modules/http/ssl-cert-conf tmp/ssl localhost tunnel
|
||||
|
||||
# Start an SSL tunnel
|
||||
|
|
|
|||
|
|
@ -29,11 +29,11 @@
|
|||
<h1>Store</h1>
|
||||
<br/>
|
||||
<p>For this sample to work, add the sample domain to your /etc/hosts as follows:<br/>
|
||||
127.0.0.1 sca-store.com jane.sca-store.com joe.sca-store.com</p>
|
||||
127.0.0.1 example.com jane.example.com joe.example.com</p>
|
||||
|
||||
<p/>
|
||||
<p>Jane's store at <a href="http://jane.sca-store.com:8090/">jane.sca-store.com</a>
|
||||
<br/>Joe's store at <a href="http://joe.sca-store.com:8090/">joe.sca-store.com</a></p>
|
||||
<p>Jane's store at <a href="http://jane.example.com:8090/">jane.example.com</a>
|
||||
<br/>Joe's store at <a href="http://joe.example.com:8090/">joe.example.com</a></p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -26,27 +26,27 @@ curl_prefix=`cat $here/../../modules/http/curl.prefix`
|
|||
sleep 2
|
||||
|
||||
# For this test to work, add the test domain to your etc/hosts as follows:
|
||||
# 127.0.0.1 sca-store.com joe.sca-store.com joe.sca-store.com
|
||||
# 127.0.0.1 example.com joe.example.com joe.example.com
|
||||
|
||||
# Test HTTP GET
|
||||
$curl_prefix/bin/curl http://joe.sca-store.com:8090/ 2>/dev/null >tmp/index.html
|
||||
$curl_prefix/bin/curl http://joe.example.com:8090/ 2>/dev/null >tmp/index.html
|
||||
diff tmp/index.html htdocs/domains/joe/index.html
|
||||
rc=$?
|
||||
|
||||
# Test Catalog
|
||||
if [ "$rc" = "0" ]; then
|
||||
$curl_prefix/bin/curl http://joe.sca-store.com:8090/references/Store/catalog -X POST -H "Content-type: application/json-rpc" --data @../store-cpp/htdocs/test/items-request.txt >tmp/items-result.txt 2>/dev/null
|
||||
$curl_prefix/bin/curl http://joe.example.com:8090/references/Store/catalog -X POST -H "Content-type: application/json-rpc" --data @../store-cpp/htdocs/test/items-request.txt >tmp/items-result.txt 2>/dev/null
|
||||
diff tmp/items-result.txt ../store-cpp/htdocs/test/items-result.txt
|
||||
rc=$?
|
||||
fi
|
||||
|
||||
# Test Shopping Cart
|
||||
if [ "$rc" = "0" ]; then
|
||||
$curl_prefix/bin/curl http://joe.sca-store.com:8090/references/Store/shoppingCart -X POST -H "Content-type: application/atom+xml" --data @../store-cpp/htdocs/test/shopping-cart-entry.xml 2>/dev/null
|
||||
$curl_prefix/bin/curl http://joe.example.com:8090/references/Store/shoppingCart -X POST -H "Content-type: application/atom+xml" --data @../store-cpp/htdocs/test/shopping-cart-entry.xml 2>/dev/null
|
||||
rc=$?
|
||||
fi
|
||||
if [ "$rc" = "0" ]; then
|
||||
$curl_prefix/bin/curl http://joe.sca-store.com:8090/references/Store/shoppingCart >tmp/shopping-cart-feed.xml 2>/dev/null
|
||||
$curl_prefix/bin/curl http://joe.example.com:8090/references/Store/shoppingCart >tmp/shopping-cart-feed.xml 2>/dev/null
|
||||
grep "3.55" tmp/shopping-cart-feed.xml >/dev/null
|
||||
rc=$?
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -18,12 +18,12 @@
|
|||
# under the License.
|
||||
|
||||
# For this sample to work, add the sample domain to your /etc/hosts as follows:
|
||||
# 127.0.0.1 sca-store.com jane.sca-store.com joe.sca-store.com
|
||||
# 127.0.0.1 example.com jane.example.com joe.example.com
|
||||
|
||||
../../modules/http/ssl-ca-conf tmp sca-store.com
|
||||
../../modules/http/ssl-cert-conf tmp sca-store.com server
|
||||
../../modules/http/ssl-cert-conf tmp *.sca-store.com vhost
|
||||
../../modules/http/httpd-conf tmp sca-store.com 8090 htdocs
|
||||
../../modules/http/ssl-ca-conf tmp example.com
|
||||
../../modules/http/ssl-cert-conf tmp example.com server
|
||||
../../modules/http/ssl-cert-conf tmp *.example.com vhost
|
||||
../../modules/http/httpd-conf tmp example.com 8090 htdocs
|
||||
../../modules/http/httpd-event-conf tmp
|
||||
../../modules/http/vhost-conf tmp domains htdocs
|
||||
../../modules/http/httpd-ssl-conf tmp 8453
|
||||
|
|
@ -38,7 +38,7 @@ SCAContribution `pwd`/shared/
|
|||
SCAComposite shared.composite
|
||||
|
||||
# Configure SCA Composite for mass dynamic virtual Hosting
|
||||
SCAVirtualDomain sca-store.com
|
||||
SCAVirtualDomain example.com
|
||||
SCAVirtualContribution `pwd`/domains/
|
||||
SCAVirtualComposite store.composite
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
../../modules/http/httpd-conf tmp sca-store.com 8090 htdocs
|
||||
../../modules/http/httpd-conf tmp example.com 8090 htdocs
|
||||
../../modules/http/httpd-event-conf tmp
|
||||
../../modules/http/vhost-conf tmp domains htdocs
|
||||
../../modules/server/server-conf tmp
|
||||
|
|
@ -28,7 +28,7 @@ SCAContribution `pwd`/shared/
|
|||
SCAComposite shared.composite
|
||||
|
||||
# Configure SCA Composite for mass dynamic virtual hosting
|
||||
SCAVirtualDomain sca-store.com
|
||||
SCAVirtualDomain example.com
|
||||
SCAVirtualContribution `pwd`/domains/
|
||||
SCAVirtualComposite store.composite
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ if [ "$1" != "" ]; then
|
|||
host=$1
|
||||
else
|
||||
# Default to dummy test domain
|
||||
host="sca-store.com"
|
||||
host="example.com"
|
||||
fi
|
||||
|
||||
# Ports 80, 443, 444, 8090, 8453, 8454 need to be open
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue