Skip to content
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

Implement applications endpoint #16

Merged
merged 2 commits into from
Oct 12, 2020
Merged

Conversation

pathob
Copy link
Member

@pathob pathob commented Sep 29, 2020

No description provided.

@pathob pathob force-pushed the feature/applications-endpoint branch 3 times, most recently from 14a5960 to dace61d Compare September 30, 2020 08:48
Copy link
Member Author

@pathob pathob left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hallo Cosmin,

sehr schön, die wichtigsten Methoden sind getestet und die Coverage von 80% ist erreicht. Inhaltlich ist nur ein Test falsch, über den sprechen wir nochmal zusammen, alle anderen Tests sind inhaltlich gut so, können und sollten aber entsprechend meiner Kommentare nochmal überarbeitet werden.

@pathob pathob force-pushed the feature/applications-endpoint branch 2 times, most recently from 1c80eeb to b8c03ff Compare October 1, 2020 07:49
Copy link
Member Author

@pathob pathob left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Weiß nicht, ob das neue Sachen sind oder ich die letztes mal übersehen habe...

@cosminvlaicu cosminvlaicu force-pushed the feature/applications-endpoint branch from 0f0773d to 1dd7a5a Compare October 5, 2020 08:28
@cosminvlaicu cosminvlaicu marked this pull request as ready for review October 5, 2020 08:48
@pathob pathob force-pushed the feature/applications-endpoint branch from 1dd7a5a to 0447ffa Compare October 5, 2020 13:23
@cosminvlaicu cosminvlaicu force-pushed the feature/applications-endpoint branch from 0447ffa to e2c5b10 Compare October 5, 2020 13:30
@pathob pathob requested a review from lehmannk October 5, 2020 13:32
@pathob pathob force-pushed the feature/applications-endpoint branch from e2c5b10 to dbecf77 Compare October 7, 2020 05:28
@pathob pathob marked this pull request as draft October 7, 2020 05:28
Comment on lines +69 to +98
try {
final ImmutableApplication.Builder applicationBuilder = new ImmutableApplication.Builder(applicationManager.findById(id));

if (applicationBean.getName() != null) {
applicationBuilder.setName(applicationBean.getName());
}
if (applicationBean.getType() != null) {
applicationBuilder.setType(ApplicationBeanUtil.toApplicationType(applicationBean.getType()));
}
if (applicationBean.getDescription() != null) {
applicationBuilder.setDescription(applicationBean.getDescription());
}
if (applicationBean.getActive() != null) {
applicationBuilder.setActive(applicationBean.getActive());
}
if (applicationBean.getPassword() != null) {
applicationBuilder.setPasswordCredential(PasswordCredential.unencrypted(applicationBean.getPassword()));
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Siehe meine Fragestellung bzgl PUT und dem POLA principle. Nach einiger Überlegung halte ich es für eine bessere Idee, die props grundsätzlich immer zu übernehmen, auch wenn explizit null gewünscht ist.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Die Überlegung ist nicht verkehrt, aber das funktioniert so nicht mit dem JSON Framework, weil wir nicht unterscheiden können, ob der User Beispielsweise für die Description null als Wert übergeben hat oder die Description im Bean einfach weggelassen hat, weil sie sich nicht ändern soll.

Wie funktioniert denn die Atlassian REST API? Ist das mit dem Werten weglassen, wenn sie sich nicht ändern sollen, dort auch so oder muss man IMMER alles mitschicken?

Wenn es bei Atlassian auch so ist wie bei uns bisher, dann würde ich das so lassen. Für Type und Active macht null sowieso keinen Sinn, für Name, Description und Password kann man sonst auch einen leeren String schicken.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

habe zb. mal PUT mit spaces (nativ REST API) ausprobiert und beim json den name key weggelassen. Das liefert:

"errors": [
      {
        "message": {
          "translation": "Name is blank. Cannot update space to have no name.",
          "args": []
        }
      }
    ]

d.h. null Werte werden nicht ignoriert. Wir sollten es daher auch nicht tun. Wie ich vermutet habe checkt das ATL backend ohnehin nochmal auf Plausi.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, ich würde das gerne auch nochmal für Jira testen, aber guter Punkt, dann sollten wir das auch so machen. Hoffe uns fliegen dann nicht die Beans mit den Objekttypen statt primitiven Datentypen um die Ohren...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bei Jira ist es nicht so.

Beispiel:

GET /rest/api/2/issuetype/10001

Response:

{
  "self": "http://localhost:2990/jira/rest/api/2/issuetype/10001",
  "id": "10001",
  "description": "Created by Jira Software - do not edit or delete. Issue type for a user story.",
  "iconUrl": "http://localhost:2990/jira/images/icons/issuetypes/story.svg",
  "name": "Story",
  "subtask": false
}

PUT /rest/api/2/issuetype/10001

Request:

{
  "name": "Story",
  "description": null
}

oder

{
  "name": "Story"
}

Response:

{
  "self": "http://localhost:2990/jira/rest/api/2/issuetype/10001",
  "id": "10001",
  "description": "Created by Jira Software - do not edit or delete. Issue type for a user story.",
  "iconUrl": "http://localhost:2990/jira/images/icons/issuetypes/story.svg",
  "name": "Story",
  "subtask": false
}

...aber...

Request:

{
  "name": "Story",
  "description": ""
}

Response;

{
  "self": "http://localhost:2990/jira/rest/api/2/issuetype/10001",
  "id": "10001",
  "description": "",
  "iconUrl": "http://localhost:2990/jira/images/icons/issuetypes/story.svg",
  "name": "Story",
  "subtask": false
}

Comment on lines +42 to +60
if (ApplicationType.GENERIC_APPLICATION.equals(applicationType)) {
return ApplicationBean.ApplicationType.GENERIC;
} else if (ApplicationType.PLUGIN.equals(applicationType)) {
return ApplicationBean.ApplicationType.PLUGIN;
} else if (ApplicationType.CROWD.equals(applicationType)) {
return ApplicationBean.ApplicationType.CROWD;
} else if (ApplicationType.JIRA.equals(applicationType)) {
return ApplicationBean.ApplicationType.JIRA;
} else if (ApplicationType.CONFLUENCE.equals(applicationType)) {
return ApplicationBean.ApplicationType.CONFLUENCE;
} else if (ApplicationType.STASH.equals(applicationType)) {
return ApplicationBean.ApplicationType.BITBUCKET;
} else if (ApplicationType.FISHEYE.equals(applicationType)) {
return ApplicationBean.ApplicationType.FISHEYE;
} else if (ApplicationType.CRUCIBLE.equals(applicationType)) {
return ApplicationBean.ApplicationType.CRUCIBLE;
} else if (ApplicationType.BAMBOO.equals(applicationType)) {
return ApplicationBean.ApplicationType.BAMBOO;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Da sich die gesamte Application Prodzedur eh nur in Crowd abspielt (und nicht in der commons, wo wir ja atlassian-free bleiben wollen), hätte man doch gleich Atlassian's ApplicationType anstelle von ApplicationBean.ApplicationType in die Bean aufnehmen können oder?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prinzipiell schon, aber so behalten wir die Kontrolle und Bitbucket darf an unseren Endpoints Bitbucket heißen und nicht Stash.

@cosminvlaicu cosminvlaicu force-pushed the feature/applications-endpoint branch from dbecf77 to 669680c Compare October 7, 2020 07:41
@sonarqubecloud
Copy link

sonarqubecloud bot commented Oct 7, 2020

Kudos, SonarCloud Quality Gate passed!

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities (and Security Hotspot 0 Security Hotspots to review)
Code Smell A 0 Code Smells

93.6% 93.6% Coverage
0.0% 0.0% Duplication

@pathob pathob merged commit 4b41c63 into master Oct 12, 2020
@pathob pathob deleted the feature/applications-endpoint branch October 12, 2020 05:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants