Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
java-gitlab-api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
沈俊林
java-gitlab-api
Commits
37444213
Commit
37444213
authored
Sep 25, 2015
by
Grogdunn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enh: formatted code
parent
42bf4d2b
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
393 additions
and
370 deletions
+393
-370
pom.xml
pom.xml
+135
-135
GitlabAPI.java
src/main/java/org/gitlab/api/GitlabAPI.java
+153
-127
TokenType.java
src/main/java/org/gitlab/api/TokenType.java
+8
-10
GitlabHTTPRequestor.java
src/main/java/org/gitlab/api/http/GitlabHTTPRequestor.java
+33
-34
Query.java
src/main/java/org/gitlab/api/http/Query.java
+28
-24
GitlabBranch.java
src/main/java/org/gitlab/api/models/GitlabBranch.java
+1
-0
GitlabBranchCommit.java
src/main/java/org/gitlab/api/models/GitlabBranchCommit.java
+1
-0
GitlabMergeRequest.java
src/main/java/org/gitlab/api/models/GitlabMergeRequest.java
+1
-0
GitlabNamespace.java
src/main/java/org/gitlab/api/models/GitlabNamespace.java
+1
-0
GitlabProjectAccessLevel.java
.../java/org/gitlab/api/models/GitlabProjectAccessLevel.java
+0
-3
GitlabRepositoryTree.java
...main/java/org/gitlab/api/models/GitlabRepositoryTree.java
+30
-29
GitlabSSHKey.java
src/main/java/org/gitlab/api/models/GitlabSSHKey.java
+1
-1
GitlabUser.java
src/main/java/org/gitlab/api/models/GitlabUser.java
+1
-0
GitlabAPIT.java
src/test/java/org/gitlab/api/GitlabAPIT.java
+0
-6
QueryTest.java
src/test/java/org/gitlab/api/http/QueryTest.java
+0
-1
No files found.
pom.xml
View file @
37444213
src/main/java/org/gitlab/api/GitlabAPI.java
View file @
37444213
...
...
@@ -14,7 +14,6 @@ import java.net.URLEncoder;
import
java.util.Arrays
;
import
java.util.List
;
/**
* Gitlab API Wrapper class
*
...
...
@@ -133,7 +132,8 @@ public class GitlabAPI {
* @param skip_confirmation Skip Confirmation
* @return A GitlabUser
* @throws IOException on gitlab api call error
* @see <a href="http://doc.gitlab.com/ce/api/users.html">http://doc.gitlab.com/ce/api/users.html</a>
* @see
* <a href="http://doc.gitlab.com/ce/api/users.html">http://doc.gitlab.com/ce/api/users.html</a>
*/
public
GitlabUser
createUser
(
String
email
,
String
password
,
String
username
,
String
fullName
,
String
skypeId
,
String
linkedIn
,
...
...
@@ -164,7 +164,6 @@ public class GitlabAPI {
return
dispatch
().
to
(
tailUrl
,
GitlabUser
.
class
);
}
/**
* Update a user
*
...
...
@@ -272,7 +271,6 @@ public class GitlabAPI {
retrieve
().
method
(
"DELETE"
).
to
(
tailUrl
,
Void
.
class
);
}
/**
* Gets all ssh keys for a user
*
...
...
@@ -344,8 +342,7 @@ public class GitlabAPI {
/**
* Creates a Group
*
* @param name The name of the group. The
* name will also be used as the path
* @param name The name of the group. The name will also be used as the path
* of the group.
* @return The GitLab Group
* @throws IOException on gitlab api call error
...
...
@@ -484,15 +481,24 @@ public class GitlabAPI {
* Creates a Project
*
* @param name The name of the project
* @param namespaceId The Namespace for the new project, otherwise null indicates to use the GitLab default (user)
* @param namespaceId The Namespace for the new project, otherwise null
* indicates to use the GitLab default (user)
* @param description A description for the project, null otherwise
* @param issuesEnabled Whether Issues should be enabled, otherwise null indicates to use GitLab default
* @param wallEnabled Whether The Wall should be enabled, otherwise null indicates to use GitLab default
* @param mergeRequestsEnabled Whether Merge Requests should be enabled, otherwise null indicates to use GitLab default
* @param wikiEnabled Whether a Wiki should be enabled, otherwise null indicates to use GitLab default
* @param snippetsEnabled Whether Snippets should be enabled, otherwise null indicates to use GitLab default
* @param publik Whether the project is public or private, if true same as setting visibilityLevel = 20, otherwise null indicates to use GitLab default
* @param visibilityLevel The visibility level of the project, otherwise null indicates to use GitLab default
* @param issuesEnabled Whether Issues should be enabled, otherwise null
* indicates to use GitLab default
* @param wallEnabled Whether The Wall should be enabled, otherwise null
* indicates to use GitLab default
* @param mergeRequestsEnabled Whether Merge Requests should be enabled,
* otherwise null indicates to use GitLab default
* @param wikiEnabled Whether a Wiki should be enabled, otherwise null
* indicates to use GitLab default
* @param snippetsEnabled Whether Snippets should be enabled, otherwise null
* indicates to use GitLab default
* @param publik Whether the project is public or private, if true same as
* setting visibilityLevel = 20, otherwise null indicates to use GitLab
* default
* @param visibilityLevel The visibility level of the project, otherwise
* null indicates to use GitLab default
* @param importUrl The Import URL for the project, otherwise null
* @return the Gitlab Project
* @throws IOException on gitlab api call error
...
...
@@ -534,14 +540,23 @@ public class GitlabAPI {
* @param userId The id of the user to create the project for
* @param name The name of the project
* @param description A description for the project, null otherwise
* @param defaultBranch The default branch for the project, otherwise null indicates to use GitLab default (master)
* @param issuesEnabled Whether Issues should be enabled, otherwise null indicates to use GitLab default
* @param wallEnabled Whether The Wall should be enabled, otherwise null indicates to use GitLab default
* @param mergeRequestsEnabled Whether Merge Requests should be enabled, otherwise null indicates to use GitLab default
* @param wikiEnabled Whether a Wiki should be enabled, otherwise null indicates to use GitLab default
* @param snippetsEnabled Whether Snippets should be enabled, otherwise null indicates to use GitLab default
* @param publik Whether the project is public or private, if true same as setting visibilityLevel = 20, otherwise null indicates to use GitLab default
* @param visibilityLevel The visibility level of the project, otherwise null indicates to use GitLab default
* @param defaultBranch The default branch for the project, otherwise null
* indicates to use GitLab default (master)
* @param issuesEnabled Whether Issues should be enabled, otherwise null
* indicates to use GitLab default
* @param wallEnabled Whether The Wall should be enabled, otherwise null
* indicates to use GitLab default
* @param mergeRequestsEnabled Whether Merge Requests should be enabled,
* otherwise null indicates to use GitLab default
* @param wikiEnabled Whether a Wiki should be enabled, otherwise null
* indicates to use GitLab default
* @param snippetsEnabled Whether Snippets should be enabled, otherwise null
* indicates to use GitLab default
* @param publik Whether the project is public or private, if true same as
* setting visibilityLevel = 20, otherwise null indicates to use GitLab
* default
* @param visibilityLevel The visibility level of the project, otherwise
* null indicates to use GitLab default
* @return The GitLab Project
* @throws IOException on gitlab api call error
*/
...
...
@@ -569,13 +584,21 @@ public class GitlabAPI {
* @param projectId The id of the project to update
* @param name The name of the project
* @param description A description for the project, null otherwise
* @param issuesEnabled Whether Issues should be enabled, otherwise null indicates to use GitLab default
* @param wallEnabled Whether The Wall should be enabled, otherwise null indicates to use GitLab default
* @param mergeRequestsEnabled Whether Merge Requests should be enabled, otherwise null indicates to use GitLab default
* @param wikiEnabled Whether a Wiki should be enabled, otherwise null indicates to use GitLab default
* @param snippetsEnabled Whether Snippets should be enabled, otherwise null indicates to use GitLab default
* @param publik Whether the project is public or private, if true same as setting visibilityLevel = 20, otherwise null indicates to use GitLab default
* @param visibilityLevel The visibility level of the project, otherwise null indicates to use GitLab default
* @param issuesEnabled Whether Issues should be enabled, otherwise null
* indicates to use GitLab default
* @param wallEnabled Whether The Wall should be enabled, otherwise null
* indicates to use GitLab default
* @param mergeRequestsEnabled Whether Merge Requests should be enabled,
* otherwise null indicates to use GitLab default
* @param wikiEnabled Whether a Wiki should be enabled, otherwise null
* indicates to use GitLab default
* @param snippetsEnabled Whether Snippets should be enabled, otherwise null
* indicates to use GitLab default
* @param publik Whether the project is public or private, if true same as
* setting visibilityLevel = 20, otherwise null indicates to use GitLab
* default
* @param visibilityLevel The visibility level of the project, otherwise
* null indicates to use GitLab default
* @return the Gitlab Project
* @throws IOException on gitlab api call error
*/
...
...
@@ -649,24 +672,25 @@ public class GitlabAPI {
GitlabHTTPRequestor
requestor
=
retrieve
().
method
(
"PUT"
);
requestor
.
with
(
"id"
,
project
.
getId
());
requestor
.
with
(
"merge_request_id"
,
mergeRequestId
);
if
(
mergeCommitMessage
!=
null
)
if
(
mergeCommitMessage
!=
null
)
{
requestor
.
with
(
"merge_commit_message"
,
mergeCommitMessage
);
}
return
requestor
.
to
(
tailUrl
,
GitlabMergeRequest
.
class
);
}
public
List
<
GitlabNote
>
getNotes
(
GitlabMergeRequest
mergeRequest
)
throws
IOException
{
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
mergeRequest
.
getProjectId
()
+
GitlabMergeRequest
.
URL
+
"/"
+
mergeRequest
.
getId
()
+
GitlabNote
.
URL
;
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
mergeRequest
.
getProjectId
()
+
GitlabMergeRequest
.
URL
+
"/"
+
mergeRequest
.
getId
()
+
GitlabNote
.
URL
;
GitlabNote
[]
notes
=
retrieve
().
to
(
tailUrl
,
GitlabNote
[].
class
);
return
Arrays
.
asList
(
notes
);
}
public
List
<
GitlabNote
>
getAllNotes
(
GitlabMergeRequest
mergeRequest
)
throws
IOException
{
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
mergeRequest
.
getProjectId
()
+
GitlabMergeRequest
.
URL
+
"/"
+
mergeRequest
.
getId
()
+
GitlabNote
.
URL
;
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
mergeRequest
.
getProjectId
()
+
GitlabMergeRequest
.
URL
+
"/"
+
mergeRequest
.
getId
()
+
GitlabNote
.
URL
;
return
retrieve
().
getAll
(
tailUrl
,
GitlabNote
[].
class
);
}
...
...
@@ -687,8 +711,8 @@ public class GitlabAPI {
Query
query
=
new
Query
()
.
append
(
"ref_name"
,
mergeRequest
.
getSourceBranch
());
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
projectId
+
"/repository"
+
GitlabCommit
.
URL
+
query
.
toString
();
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
projectId
+
"/repository"
+
GitlabCommit
.
URL
+
query
.
toString
();
GitlabCommit
[]
commits
=
retrieve
().
to
(
tailUrl
,
GitlabCommit
[].
class
);
return
Arrays
.
asList
(
commits
);
...
...
@@ -751,8 +775,10 @@ public class GitlabAPI {
* Get an archive of the repository
*
* @param project The Project
* @param path The path inside the repository. Used to get content of subdirectories (optional)
* @param ref_name The name of a repository branch or tag or if not given the default branch (optional)
* @param path The path inside the repository. Used to get content of
* subdirectories (optional)
* @param ref_name The name of a repository branch or tag or if not given
* the default branch (optional)
* @throws IOException on gitlab api call error
*/
public
List
<
GitlabRepositoryTree
>
getRepositoryTree
(
GitlabProject
project
,
String
path
,
String
ref_name
)
throws
IOException
{
...
...
@@ -766,8 +792,8 @@ public class GitlabAPI {
}
public
GitlabNote
createNote
(
GitlabMergeRequest
mergeRequest
,
String
body
)
throws
IOException
{
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
mergeRequest
.
getProjectId
()
+
GitlabMergeRequest
.
URL
+
"/"
+
mergeRequest
.
getId
()
+
GitlabNote
.
URL
;
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
mergeRequest
.
getProjectId
()
+
GitlabMergeRequest
.
URL
+
"/"
+
mergeRequest
.
getId
()
+
GitlabNote
.
URL
;
return
dispatch
().
with
(
"body"
,
body
).
to
(
tailUrl
,
GitlabNote
.
class
);
}
...
...
src/main/java/org/gitlab/api/TokenType.java
View file @
37444213
package
org
.
gitlab
.
api
;
public
enum
TokenType
{
PRIVATE_TOKEN
(
"private_token"
)
,
ACCESS_TOKEN
(
"access_token"
),
;
PRIVATE_TOKEN
(
"private_token"
),
ACCESS_TOKEN
(
"access_token"
),;
private
final
String
tokenParamName
;
...
...
src/main/java/org/gitlab/api/http/GitlabHTTPRequestor.java
View file @
37444213
...
...
@@ -20,8 +20,8 @@ import java.util.regex.Pattern;
import
java.util.zip.GZIPInputStream
;
/**
* Gitlab HTTP Requestor
*
Responsible for handling HTTP requests to the Gitlab
API
* Gitlab HTTP Requestor
Responsible for handling HTTP requests to the Gitlab
* API
*
* @author @timols (Tim O)
*/
...
...
@@ -57,8 +57,8 @@ public class GitlabHTTPRequestor {
}
/**
* Sets the HTTP Request method for the request.
*
Has a fluent api for method
chaining.
* Sets the HTTP Request method for the request.
Has a fluent api for method
* chaining.
*
* @param method The HTTP method
* @return this
...
...
@@ -74,8 +74,8 @@ public class GitlabHTTPRequestor {
}
/**
* Sets the HTTP Form Post parameters for the request
*
Has a fluent api for
method chaining
* Sets the HTTP Form Post parameters for the request
Has a fluent api for
* method chaining
*
* @param key Form parameter Key
* @param value Form parameter Value
...
...
@@ -101,7 +101,8 @@ public class GitlabHTTPRequestor {
* Will throw an error
*
* @param <T> The return type of the method
* @param tailAPIUrl The url to open a connection to (after the host and namespace)
* @param tailAPIUrl The url to open a connection to (after the host and
* namespace)
* @param type The type of the response to be deserialized from
* @param instance The instance to update from the response
* @return An object of type T
...
...
@@ -231,8 +232,7 @@ public class GitlabHTTPRequestor {
if
(
matcher
.
find
())
{
Integer
page
=
Integer
.
parseInt
(
matcher
.
group
(
2
))
+
1
;
this
.
url
=
new
URL
(
matcher
.
replaceAll
(
matcher
.
group
(
1
)
+
"page="
+
page
));
}
else
{
if
(
GitlabCommit
[].
class
==
type
)
{
}
else
if
(
GitlabCommit
[].
class
==
type
)
{
// there is a bug in the Gitlab CE API
// (https://gitlab.com/gitlab-org/gitlab-ce/issues/759)
// that starts pagination with page=0 for commits
...
...
@@ -243,7 +243,6 @@ public class GitlabHTTPRequestor {
this
.
url
=
new
URL
(
url
+
"&page=2"
);
}
}
}
};
}
...
...
src/main/java/org/gitlab/api/http/Query.java
View file @
37444213
...
...
@@ -8,12 +8,12 @@ import java.util.ArrayList;
import
java.util.List
;
/**
* Models the Query
* aspect of a URL
* Models the Query aspect of a URL
*/
public
class
Query
{
private
class
Tuple
<
T1
,
T2
>
{
T1
_1
;
T2
_2
;
...
...
@@ -24,8 +24,8 @@ public class Query {
}
/**
* The type of params is:
* Tuple<
name, Tuple<
value, URLEncoder.encode(value, "UTF-8")>>
* The type of params is:
Tuple<name,
* Tuple<value, URLEncoder.encode(value, "UTF-8")>>
*/
private
final
List
<
Tuple
<
String
,
Tuple
<
String
,
String
>>>
params
=
new
ArrayList
<
Tuple
<
String
,
Tuple
<
String
,
String
>>>();
...
...
@@ -35,7 +35,8 @@ public class Query {
* @param name Parameter name
* @param value Parameter value
* @return this
* @throws java.io.UnsupportedEncodingException If the provided value cannot be URL Encoded
* @throws java.io.UnsupportedEncodingException If the provided value cannot
* be URL Encoded
*/
public
Query
append
(
final
String
name
,
final
String
value
)
throws
UnsupportedEncodingException
{
params
.
add
(
new
Tuple
<
String
,
Tuple
<
String
,
String
>>(
name
,
new
Tuple
<
String
,
String
>(
value
,
URLEncoder
.
encode
(
value
,
"UTF-8"
))));
...
...
@@ -43,13 +44,14 @@ public class Query {
}
/**
* Conditionally append a parameter to the query
*
if the value of the
parameter is not null
* Conditionally append a parameter to the query
if the value of the
* parameter is not null
*
* @param name Parameter name
* @param value Parameter value
* @return this
* @throws java.io.UnsupportedEncodingException If the provided value cannot be URL Encoded
* @throws java.io.UnsupportedEncodingException If the provided value cannot
* be URL Encoded
*/
public
Query
appendIf
(
final
String
name
,
final
String
value
)
throws
UnsupportedEncodingException
{
if
(
value
!=
null
)
{
...
...
@@ -59,13 +61,14 @@ public class Query {
}
/**
* Conditionally append a parameter to the query
*
if the value of the
parameter is not null
* Conditionally append a parameter to the query
if the value of the
* parameter is not null
*
* @param name Parameter name
* @param value Parameter value
* @return this
* @throws java.io.UnsupportedEncodingException If the provided value cannot be URL Encoded
* @throws java.io.UnsupportedEncodingException If the provided value cannot
* be URL Encoded
*/
public
Query
appendIf
(
final
String
name
,
final
Integer
value
)
throws
UnsupportedEncodingException
{
if
(
value
!=
null
)
{
...
...
@@ -75,13 +78,14 @@ public class Query {
}
/**
* Conditionally append a parameter to the query
*
if the value of the
parameter is not null
* Conditionally append a parameter to the query
if the value of the
* parameter is not null
*
* @param name Parameter name
* @param value Parameter value
* @return this
* @throws java.io.UnsupportedEncodingException If the provided value cannot be URL Encoded
* @throws java.io.UnsupportedEncodingException If the provided value cannot
* be URL Encoded
*/
public
Query
appendIf
(
final
String
name
,
final
Boolean
value
)
throws
UnsupportedEncodingException
{
if
(
value
!=
null
)
{
...
...
@@ -91,13 +95,14 @@ public class Query {
}
/**
* Conditionally append a parameter to the query
*
if the value of the
parameter is not null
* Conditionally append a parameter to the query
if the value of the
* parameter is not null
*
* @param name Parameter name
* @param value Parameter value
* @return this
* @throws java.io.UnsupportedEncodingException If the provided value cannot be URL Encoded
* @throws java.io.UnsupportedEncodingException If the provided value cannot
* be URL Encoded
*/
public
Query
appendIf
(
final
String
name
,
final
GitlabAccessLevel
value
)
throws
UnsupportedEncodingException
{
if
(
value
!=
null
)
{
...
...
@@ -107,8 +112,7 @@ public class Query {
}
/**
* Returns a Query suitable for appending
* to a URI
* Returns a Query suitable for appending to a URI
*/
@Override
public
String
toString
()
{
...
...
src/main/java/org/gitlab/api/models/GitlabBranch.java
View file @
37444213
...
...
@@ -3,6 +3,7 @@ package org.gitlab.api.models;
import
com.fasterxml.jackson.annotation.JsonProperty
;
public
class
GitlabBranch
{
public
final
static
String
URL
=
"/repository/branches/"
;
@JsonProperty
(
"name"
)
...
...
src/main/java/org/gitlab/api/models/GitlabBranchCommit.java
View file @
37444213
...
...
@@ -5,6 +5,7 @@ import java.util.Date;
import
com.fasterxml.jackson.annotation.JsonProperty
;
public
class
GitlabBranchCommit
{
public
static
String
URL
=
"/users"
;
private
String
id
;
...
...
src/main/java/org/gitlab/api/models/GitlabMergeRequest.java
View file @
37444213
...
...
@@ -5,6 +5,7 @@ import java.util.Date;
import
com.fasterxml.jackson.annotation.JsonProperty
;
public
class
GitlabMergeRequest
{
public
static
final
String
URL
=
"/merge_requests"
;
private
Integer
id
;
...
...
src/main/java/org/gitlab/api/models/GitlabNamespace.java
View file @
37444213
...
...
@@ -5,6 +5,7 @@ import java.util.Date;
import
com.fasterxml.jackson.annotation.JsonProperty
;
public
class
GitlabNamespace
{
public
static
final
String
URL
=
"/groups"
;
private
Integer
id
;
...
...
src/main/java/org/gitlab/api/models/GitlabProjectAccessLevel.java
View file @
37444213
...
...
@@ -10,7 +10,6 @@ public class GitlabProjectAccessLevel {
@JsonProperty
(
"notification_level"
)
private
int
notificationLevel
;
public
GitlabAccessLevel
getAccessLevel
()
{
return
GitlabAccessLevel
.
fromAccessValue
(
accessLevel
);
}
...
...
@@ -19,7 +18,6 @@ public class GitlabProjectAccessLevel {
this
.
accessLevel
=
accessLevel
.
accessValue
;
}
public
int
getNoficationLevel
()
{
return
notificationLevel
;
}
...
...
@@ -28,5 +26,4 @@ public class GitlabProjectAccessLevel {
this
.
accessLevel
=
notificationLevel
;
}
}
src/main/java/org/gitlab/api/models/GitlabRepositoryTree.java
View file @
37444213
package
org
.
gitlab
.
api
.
models
;
public
class
GitlabRepositoryTree
{
public
static
String
URL
=
"/tree"
;
private
String
name
;
...
...
src/main/java/org/gitlab/api/models/GitlabSSHKey.java
View file @
37444213
package
org
.
gitlab
.
api
.
models
;
public
class
GitlabSSHKey
{
public
static
String
KEYS_URL
=
"/keys"
;
private
Integer
_id
;
...
...
src/main/java/org/gitlab/api/models/GitlabUser.java
View file @
37444213
...
...
@@ -5,6 +5,7 @@ import java.util.Date;
import
com.fasterxml.jackson.annotation.JsonProperty
;
public
class
GitlabUser
{
public
static
String
URL
=
"/users"
;
public
static
String
USERS_URL
=
"/users"
;
public
static
String
USER_URL
=
"/user"
;
// for sudo based ops
...
...
src/test/java/org/gitlab/api/GitlabAPIT.java
View file @
37444213
...
...
@@ -24,7 +24,6 @@ public class GitlabAPIT {
String
rand
=
UUID
.
randomUUID
().
toString
().
replace
(
"-"
,
""
).
substring
(
0
,
8
);
@Before
public
void
setup
()
throws
IOException
{
api
=
GitlabAPI
.
connect
(
TEST_URL
,
TEST_TOKEN
);
...
...
@@ -62,7 +61,6 @@ public class GitlabAPIT {
String
password
=
randVal
(
"$%password"
);
GitlabUser
gitUser
=
api
.
createUser
(
randVal
(
"testEmail@gitlabapitest.com"
),
password
,
randVal
(
"userName"
),
...
...
@@ -91,14 +89,11 @@ public class GitlabAPIT {
10
/* project limit does not come back on GET */
,
gitUser
.
getExternUid
(),
gitUser
.
getExternProviderName
(),
gitUser
.
getBio
(),
gitUser
.
isAdmin
(),
gitUser
.
isCanCreateGroup
());
GitlabUser
postUpdate
=
api
.
getUserViaSudo
(
gitUser
.
getUsername
());
assertNotNull
(
postUpdate
);
assertEquals
(
postUpdate
.
getSkype
(),
"newSkypeId"
);
api
.
deleteUser
(
postUpdate
.
getId
());
// expect a 404, but we have no access to it
...
...
@@ -109,7 +104,6 @@ public class GitlabAPIT {
assertTrue
(
true
);
// expected
}
}
private
String
randVal
(
String
postfix
)
{
...
...
src/test/java/org/gitlab/api/http/QueryTest.java
View file @
37444213
...
...
@@ -32,7 +32,6 @@ public class QueryTest {
Query
query
=
new
Query
()
.
append
(
"p1"
,
"v1"
);
query
.
append
(
"p2"
,
"v2"
);
query
=
query
.
append
(
"p3"
,
"v3"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment