pritidesai commented on a change in pull request #738: GH-735 adjusting check 
for github to mainly make sure that github app?
URL: 
https://github.com/apache/incubator-openwhisk-wskdeploy/pull/738#discussion_r168302755
 
 

 ##########
 File path: utils/dependencies_test.go
 ##########
 @@ -0,0 +1,55 @@
+// +build unit
+
+/*
+ * 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.
+ */
+
+package utils
+
+import (
+       "testing"
+
+       "github.com/stretchr/testify/assert"
+)
+
+func TestLocationIsGithub(t *testing.T) {
+       assert.True(t, LocationIsGithub("github.com/my-org/my-project"), "Does 
not allow github without a http/https prefix")
+       assert.True(t, LocationIsGithub("github.ibm.com/my-org/my-project"), 
"Does not allow github.ibm.com without a http/https prefix")
+       assert.True(t, LocationIsGithub("http://github.com/my-org/my-project";), 
"Does not allow github with a http/https prefix")
+       assert.True(t, 
LocationIsGithub("http://github.ibm.com/my-org/my-project";), "Does not allow 
github.ibm.com with a http/https prefix")
+}
+
+func TestLocationIsGithub_WithUsernamePassword(t *testing.T) {
+       assert.True(t, 
LocationIsGithub("username:passw...@github.com/my-org/my-project"), "Does not 
allow username/password and github without a http/https prefix")
 
 Review comment:
   Thanks @allen-servedio for initiating this effort. Your PR looks great 
except that these changes creates perception that `wskdeploy` supports private 
GitHub repos, which is not true.  Many times, people look for examples and just 
`grep` for specific keywords like `username:passw...@github.com. Can you please 
add a comment in the test file saying that we still do not have support for 
private repo but this is one of many changes for adding that support and we can 
get rid of such comment once its supported. Thoughts?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to