-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] 12-SearchApi #36
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
44ebc0e
#36 Implemented searchRepositories v1
sukeshni fe13690
Parsing input Query q,Test for searchRepositories
sukeshni 6b483bf
searchCode, searchIssues, searchUser
sukeshni c085480
Tests for searchCode,searchIssues,searchUser
sukeshni 203da94
Refactoring
sukeshni 6785872
Assert condition changed for searchUser
sukeshni File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
package codecheck.github.models | ||
|
||
import org.json4s.JValue | ||
import org.json4s.JArray | ||
|
||
sealed abstract class SearchSort(val name: String) { | ||
override def toString = name | ||
} | ||
object SearchSort { | ||
//for serachRepositories | ||
case object stars extends SearchSort("stars") | ||
case object forks extends SearchSort("forks") | ||
case object updated extends SearchSort("updated") | ||
|
||
//for searchCode | ||
case object indexed extends SearchSort("indexed") | ||
|
||
//for searchIssues | ||
case object comments extends SearchSort("comments") | ||
case object created extends SearchSort("created") | ||
//case object updated extends SearchSort("updated") | ||
|
||
//for searchUser | ||
case object followers extends SearchSort("followers") | ||
case object repositories extends SearchSort("repositories") | ||
case object joined extends SearchSort("joined") | ||
} | ||
|
||
case class SearchInput ( | ||
q: String, | ||
sort: Option[SearchSort] = None, | ||
order: SortDirection = SortDirection.desc | ||
) extends AbstractInput | ||
|
||
case class SearchRepositoryResult(value: JValue) extends AbstractJson(value) { | ||
def total_count: Long = get("total_count").toLong | ||
def incomplete_results: Boolean = boolean("incomplete_results") | ||
lazy val items = (value \ "items") match { | ||
case JArray(arr) => arr.map(new Repository(_)) | ||
case _ => Nil | ||
} | ||
} | ||
|
||
case class searchCodeItems (value: JValue) extends AbstractJson(value){ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe the other fields (path, sha, url, git_url, html_url) will be useful too. |
||
def name: String = get("name") | ||
lazy val Repo = new Repository(value \ "repository") | ||
} | ||
|
||
case class SearchCodeResult(value: JValue) extends AbstractJson(value) { | ||
def total_count: Long = get("total_count").toLong | ||
def incomplete_results: Boolean = boolean("incomplete_results") | ||
lazy val items = (value \ "items") match { | ||
case JArray(arr) => arr.map(new searchCodeItems(_)) | ||
case _ => Nil | ||
} | ||
} | ||
|
||
case class SearchIssueResult(value: JValue) extends AbstractJson(value) { | ||
def total_count: Long = get("total_count").toLong | ||
def incomplete_results: Boolean = boolean("incomplete_results") | ||
lazy val items = (value \ "items") match { | ||
case JArray(arr) => arr.map(new Issue(_)) | ||
case _ => Nil | ||
} | ||
} | ||
|
||
case class SearchUserResult(value: JValue) extends AbstractJson(value) { | ||
def total_count: Long = get("total_count").toLong | ||
def incomplete_results: Boolean = boolean("incomplete_results") | ||
lazy val items = (value \ "items") match { | ||
case JArray(arr) => arr.map(new User(_)) | ||
case _ => Nil | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package codecheck.github.operations | ||
|
||
import scala.concurrent.Future | ||
import scala.concurrent.ExecutionContext.Implicits.global | ||
|
||
import codecheck.github.api.GitHubAPI | ||
import codecheck.github.models.SearchInput | ||
import codecheck.github.models.SearchRepositoryResult | ||
import codecheck.github.models.SearchCodeResult | ||
import codecheck.github.models.SearchIssueResult | ||
import codecheck.github.models.SearchUserResult | ||
|
||
trait SearchOp { | ||
self: GitHubAPI => | ||
|
||
def searchRepositories(input: SearchInput): Future[SearchRepositoryResult] = { | ||
val path = s"/search/repositories?q=${input.q}&sort=${input.sort}&order=${input.order}" | ||
exec("GET", path ).map { res => | ||
SearchRepositoryResult(res.body) | ||
} | ||
} | ||
|
||
def searchCode(input: SearchInput): Future[SearchCodeResult] = { | ||
val path = s"/search/code?q=${input.q}&sort=${input.sort}&order=${input.order}" | ||
exec("GET", path ).map { res => | ||
SearchCodeResult(res.body) | ||
} | ||
} | ||
|
||
def searchIssues(input: SearchInput): Future[SearchIssueResult] = { | ||
val path = s"/search/issues?q=${input.q}&sort=${input.sort}&order=${input.order}" | ||
exec("GET", path ).map { res => | ||
SearchIssueResult(res.body) | ||
} | ||
} | ||
|
||
def searchUser(input: SearchInput): Future[SearchUserResult] = { | ||
val path = s"/search/users?q=${input.q}&sort=${input.sort}&order=${input.order}" | ||
exec("GET", path ).map { res => | ||
SearchUserResult(res.body) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
import org.scalatest.path.FunSpec | ||
import scala.concurrent.Await | ||
import scala.concurrent.ExecutionContext.Implicits.global | ||
import codecheck.github.models.SortDirection | ||
import codecheck.github.models.SearchInput | ||
import codecheck.github.models.SearchSort | ||
import codecheck.github.models.SearchRepositoryResult | ||
import codecheck.github.models.SearchCodeResult | ||
import codecheck.github.models.searchCodeItems | ||
import codecheck.github.exceptions.GitHubAPIException | ||
|
||
class SearchOpSpec extends FunSpec | ||
with Constants | ||
{ | ||
|
||
describe("searchRepositories") { | ||
it("with valid SearchInput should succeed") { | ||
var q = "tetris language:assembly" | ||
val q1 = q.trim.replaceAll(" ","+"); | ||
val input = SearchInput(q1,sort=Some(SearchSort.stars),order=SortDirection.desc) | ||
val res = Await.result(api.searchRepositories(input), TIMEOUT) | ||
assert(res.total_count >= 1) | ||
assert(res.items(0).id >= 1 ) | ||
assert(res.items(0).name.length >= 1) | ||
assert(res.items(0).full_name.length >= 1) | ||
assert(res.items(0).description.isDefined) | ||
assert(res.items(0).open_issues_count >= 0) | ||
assert(res.items(0).language == "Assembly") | ||
assert(res.items(0).stargazers_count > res.items(1).stargazers_count) | ||
} | ||
it("with valid changed query(q) SearchInput should succeed") { | ||
var q = "jquery in:name,description" | ||
val q1 = q.trim.replaceAll(" ","+"); | ||
val input = SearchInput(q1,sort=Some(SearchSort.stars),order=SortDirection.desc) | ||
val res = Await.result(api.searchRepositories(input), TIMEOUT) | ||
assert(res.total_count >= 1) | ||
assert(res.items(0).id >= 1 ) | ||
assert(res.items(0).name.length >= 1) | ||
assert(res.items(0).full_name.length >= 1) | ||
assert(res.items(0).description.isDefined) | ||
assert(res.items(0).open_issues_count >= 0) | ||
} | ||
} | ||
describe("searchCode") { | ||
it("with valid SearchInput q,no SortOrder should succeed") { | ||
var q = "addClass in:file language:js repo:jquery/jquery" | ||
val q1 = q.trim.replaceAll(" ","+"); | ||
val input = SearchInput(q1,sort=None,order=SortDirection.desc) | ||
val res = Await.result(api.searchCode(input), TIMEOUT) | ||
assert(res.total_count >= 1) | ||
assert(res.items(0).Repo.id >= 1 ) | ||
assert(res.items(0).Repo.full_name == "jquery/jquery") | ||
} | ||
//Following test results in error: | ||
// "message" : "Validation Failed", | ||
// "errors" : [ { | ||
// "message" : "Must include at least one user, organization, or repository" | ||
it("with valid SearchInput it should succeed") { | ||
var q = "function size:10000 language:python" | ||
val q1 = q.trim.replaceAll(" ","+"); | ||
val input = SearchInput(q1,sort=Some(SearchSort.indexed),order=SortDirection.desc) | ||
try { | ||
val res = Await.result(api.searchCode(input), TIMEOUT) | ||
fail | ||
} catch { | ||
case e: GitHubAPIException => | ||
assert(e.error.errors.length == 1) | ||
assert(e.error.message == "Validation Failed") | ||
} | ||
} | ||
} | ||
describe("searchIssues") { | ||
it("with valid SearchInput should succeed") { | ||
var q = "windows label:bug language:python state:open" | ||
val q1 = q.trim.replaceAll(" ","+"); | ||
val input = SearchInput(q1,sort=Some(SearchSort.created),order=SortDirection.asc) | ||
val res = Await.result(api.searchIssues(input), TIMEOUT) | ||
assert(res.total_count >= 1) | ||
assert(res.items(0).labels(0).name == "bug" ) | ||
assert(res.items(0).state == "open") | ||
assert(((res.items(0).created_at).compareTo(res.items(1).created_at)) > 0) | ||
} | ||
} | ||
describe("searchUser") { | ||
it("with valid SearchInput should succeed") { | ||
var q = "tom repos:>42 followers:>1000" | ||
q = q.trim.replaceAll(" ","+") | ||
val q1 = q.replaceAll(">","%3E") | ||
val input = SearchInput(q1,sort=None,order=SortDirection.desc) | ||
val res = Await.result(api.searchUser(input), TIMEOUT) | ||
assert(res.total_count >= 0) | ||
assert(res.items(0).login.length >= 0) | ||
assert(res.items(0).id >= 0) | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The following is my implementation of an Input class very similar to this one.
I think it may be beneficial to take in parameters and automatically generate the query string rather than having the user look up the format for it and writing it themselves.