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

[Elixir] Update Tesla dependency to version 1.0 #2326

Merged

Conversation

yknx4
Copy link
Contributor

@yknx4 yknx4 commented Mar 8, 2019

PR checklist

  • Read the contribution guidelines.
  • Ran the shell script under ./bin/ to update Petstore sample so that CIs can verify the change. (For instance, only need to run ./bin/{LANG}-petstore.sh, ./bin/openapi3/{LANG}-petstore.sh, ./bin/security/{LANG}-petstore.sh and ./bin/openapi3/security/{LANG}-petstore.sh if updating the {LANG} (e.g. php, ruby, python, etc) code generator or {LANG} client's mustache templates). Windows batch files can be found in .\bin\windows\.
  • Filed the PR against the correct branch: master, 3.4.x, 4.0.x. Default: master.
  • Copied the technical committee to review the pull request if your PR is targeting a particular programming language.

Description of the PR

  • Update Tesla dependency version
  • Replace Poison with Jason (it is the new default JSON encoder)
    (Jason doesn't support :as option)
  • Use new method to set the headers as per the official migration guide.

closes #2325
cc @mrmstn

@yknx4 yknx4 changed the title Features/update tesla dependency elixir [Elixir] Update Tesla dependency to version 1.0 Mar 8, 2019
@wing328
Copy link
Member

wing328 commented Mar 8, 2019

@yknx4 thanks for the PR but Shippable CI reports the following errors:

warning: found quoted atom "phone" but the quotes are not required. Atoms made exclusively of Unicode letters, numbers, underscore, and @ do not require quotes
  lib/openapi_petstore/model/user.ex:29

warning: found quoted atom "userStatus" but the quotes are not required. Atoms made exclusively of Unicode letters, numbers, underscore, and @ do not require quotes
  lib/openapi_petstore/model/user.ex:30


== Compilation error in file lib/openapi_petstore/model/animal_farm.ex ==
** (ArgumentError) Poison.Encoder is not available, cannot derive Poison.Encoder for OpenapiPetstore.Model.AnimalFarm
    (elixir) lib/protocol.ex:69: Protocol.assert_protocol!/2
    (elixir) lib/protocol.ex:638: Protocol.derive/5
    (stdlib) lists.erl:1338: :lists.foreach/2
    (elixir) lib/protocol.ex:631: Protocol.__derive__/3
    lib/openapi_petstore/model/animal_farm.ex:11: (module)
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (compile) on project ElixirPetstoreClientTests: Command execution failed.: Process exited with an error: 1 (Exit value: 1) -> [Help 1]
[ERROR] 

Ref: https://app.shippable.com/github/OpenAPITools/openapi-generator/runs/6398/1/console

Please take a look and let us know if you need any help.

@yknx4
Copy link
Contributor Author

yknx4 commented Mar 8, 2019

@wing328 All issues have been addressed :)

@yknx4 yknx4 force-pushed the features/update-tesla-dependency-elixir branch from 5293cd1 to 8d94c35 Compare March 8, 2019 04:01
@yknx4 yknx4 force-pushed the features/update-tesla-dependency-elixir branch from 8d94c35 to 95d8d5c Compare March 8, 2019 04:02
@mrmstn
Copy link
Contributor

mrmstn commented Mar 8, 2019

Hey @yknx4, first of all, thank you very much for your PR

Your changes look pretty good to me, there's only one thing I noticed:
https://github.com/yknx4/openapi-generator/blob/features/update-tesla-dependency-elixir/modules/openapi-generator/src/main/resources/elixir/api.mustache#L61

The new tesla 1.0 will return a tuple ({:ok, %Tesla.Env{}} | {:error, any} ) for Connection.request which wouldn't properly match on RequestBuilder.decode.
( https://github.com/yknx4/openapi-generator/blob/features/update-tesla-dependency-elixir/modules/openapi-generator/src/main/resources/elixir/request_builder.ex.mustache#L119 )

This could be fixes by

  • using the request! function instead of request
  • or changing the decode function to match on {:ok, %Tesla.Env{} =env} instead of %Tesla.Env{} (which might be the better option since it gives the developer the ability to handle adapter/connection errors without try ... rescue )

Please let me know if I can assist you somehow according to this PR and again, thank you very much for your contribution

@yknx4
Copy link
Contributor Author

yknx4 commented Mar 8, 2019

@mrmstn Thank you very much for your feedback, I'll follow the second approach you propose.

@wing328
Copy link
Member

wing328 commented Mar 19, 2019

If no further feedback on this PR, I'll merge it tomorrow (Wed)

@wing328 wing328 merged commit bf7838c into OpenAPITools:master Mar 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[REQ] [Elixir] Upgrade Tesla client from 0.x to 1.0
3 participants