Unit Testing tls.LoadX509KeyPair fails if no certs providedIn Go,how to get test environment at run time?Mock functions in GoGood unit testing in GoGolang mocking functions for http handler testsUnit testing os.File.Write callHow would you unit test a method whose only purpose to make a Database call?Unit testing tls clientUnit Testing Strategy for Database Connection get in GolangApproaches to testing negative scenarios in Gowrite Golang unit test for function that expects a key pressed to continueMocking with pointer reference in function parameters for unit test

Reason why a kingside attack is not justified

Make a Bowl of Alphabet Soup

Does capillary rise violate hydrostatic paradox?

What do the positive and negative (+/-) transmit and receive pins mean on Ethernet cables?

Exposing a company lying about themselves in a tightly knit industry (videogames) : Is my career at risk on the long run?

Weird lines in Microsoft Word

Why can't I get pgrep output right to variable on bash script?

Offset in split text content

Are hand made posters acceptable in Academia?

C++ lambda syntax

How to preserve electronics (computers, ipads, phones) for hundreds of years?

Writing in a Christian voice

Why is participating in the European Parliamentary elections used as a threat?

PTIJ: Which Dr. Seuss books should one obtain?

Can you take a "free object interaction" while incapacitated?

Why is indicated airspeed rather than ground speed used during the takeoff roll?

How do you say "Trust your struggle." in French?

Highest stage count that are used one right after the other?

Air travel with refrigerated insulin

Asserting that Atheism and Theism are both faith based positions

How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?

Rendered textures different to 3D View

Why is implicit conversion not ambiguous for non-primitive types?

"Marked down as someone wanting to sell shares." What does that mean?



Unit Testing tls.LoadX509KeyPair fails if no certs provided


In Go,how to get test environment at run time?Mock functions in GoGood unit testing in GoGolang mocking functions for http handler testsUnit testing os.File.Write callHow would you unit test a method whose only purpose to make a Database call?Unit testing tls clientUnit Testing Strategy for Database Connection get in GolangApproaches to testing negative scenarios in Gowrite Golang unit test for function that expects a key pressed to continueMocking with pointer reference in function parameters for unit test













-1















cert, err := tls.LoadX509KeyPair(os.Getenv("CERT"), os.Getenv("KEY"))
if err != nil
return err



I want to write a unit test for a function that contains this snippet of code. However, my test environment will never have any content in os.Getenv("CERT")/os.Getenv("KEY"). This makes the code(tls.LoadX509KeyPair()) return an error, which doesn't let me test the function.
How should I go about mocking/modifying this snippet?










share|improve this question



















  • 1





    Refactor. If the code under test relies on an environment that isn't reproduced under test, either you can't test it or you have to refactor it.

    – Adrian
    Mar 7 at 20:30











  • You mean using os.Getenv() in go code is a bad practice?

    – jazz
    Mar 7 at 21:15











  • No, there's nothing wrong with it. I mean the broader sense of "environment" - the environment variables, local files (e.g. certificates), etc.

    – Adrian
    Mar 7 at 21:28















-1















cert, err := tls.LoadX509KeyPair(os.Getenv("CERT"), os.Getenv("KEY"))
if err != nil
return err



I want to write a unit test for a function that contains this snippet of code. However, my test environment will never have any content in os.Getenv("CERT")/os.Getenv("KEY"). This makes the code(tls.LoadX509KeyPair()) return an error, which doesn't let me test the function.
How should I go about mocking/modifying this snippet?










share|improve this question



















  • 1





    Refactor. If the code under test relies on an environment that isn't reproduced under test, either you can't test it or you have to refactor it.

    – Adrian
    Mar 7 at 20:30











  • You mean using os.Getenv() in go code is a bad practice?

    – jazz
    Mar 7 at 21:15











  • No, there's nothing wrong with it. I mean the broader sense of "environment" - the environment variables, local files (e.g. certificates), etc.

    – Adrian
    Mar 7 at 21:28













-1












-1








-1








cert, err := tls.LoadX509KeyPair(os.Getenv("CERT"), os.Getenv("KEY"))
if err != nil
return err



I want to write a unit test for a function that contains this snippet of code. However, my test environment will never have any content in os.Getenv("CERT")/os.Getenv("KEY"). This makes the code(tls.LoadX509KeyPair()) return an error, which doesn't let me test the function.
How should I go about mocking/modifying this snippet?










share|improve this question
















cert, err := tls.LoadX509KeyPair(os.Getenv("CERT"), os.Getenv("KEY"))
if err != nil
return err



I want to write a unit test for a function that contains this snippet of code. However, my test environment will never have any content in os.Getenv("CERT")/os.Getenv("KEY"). This makes the code(tls.LoadX509KeyPair()) return an error, which doesn't let me test the function.
How should I go about mocking/modifying this snippet?







go tls1.2






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 20:24









Pikachu the Purple Wizard

2,02761329




2,02761329










asked Mar 7 at 20:23









jazzjazz

72




72







  • 1





    Refactor. If the code under test relies on an environment that isn't reproduced under test, either you can't test it or you have to refactor it.

    – Adrian
    Mar 7 at 20:30











  • You mean using os.Getenv() in go code is a bad practice?

    – jazz
    Mar 7 at 21:15











  • No, there's nothing wrong with it. I mean the broader sense of "environment" - the environment variables, local files (e.g. certificates), etc.

    – Adrian
    Mar 7 at 21:28












  • 1





    Refactor. If the code under test relies on an environment that isn't reproduced under test, either you can't test it or you have to refactor it.

    – Adrian
    Mar 7 at 20:30











  • You mean using os.Getenv() in go code is a bad practice?

    – jazz
    Mar 7 at 21:15











  • No, there's nothing wrong with it. I mean the broader sense of "environment" - the environment variables, local files (e.g. certificates), etc.

    – Adrian
    Mar 7 at 21:28







1




1





Refactor. If the code under test relies on an environment that isn't reproduced under test, either you can't test it or you have to refactor it.

– Adrian
Mar 7 at 20:30





Refactor. If the code under test relies on an environment that isn't reproduced under test, either you can't test it or you have to refactor it.

– Adrian
Mar 7 at 20:30













You mean using os.Getenv() in go code is a bad practice?

– jazz
Mar 7 at 21:15





You mean using os.Getenv() in go code is a bad practice?

– jazz
Mar 7 at 21:15













No, there's nothing wrong with it. I mean the broader sense of "environment" - the environment variables, local files (e.g. certificates), etc.

– Adrian
Mar 7 at 21:28





No, there's nothing wrong with it. I mean the broader sense of "environment" - the environment variables, local files (e.g. certificates), etc.

– Adrian
Mar 7 at 21:28












1 Answer
1






active

oldest

votes


















0














This works by defining vars for the certFile and keyFile and then overriding them in the test environment.



//.. 
var certFile = os.Getenv("CERT")
var keyFile = os.Getenv("KEY")
//...
cert, err := tls.LoadX509KeyPair(certFile, keyFile)
if err != nil
return err



Follow the below link to see how to override the vars in a test env.
In Go,how to get test environment at run time?






share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55052235%2funit-testing-tls-loadx509keypair-fails-if-no-certs-provided%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    This works by defining vars for the certFile and keyFile and then overriding them in the test environment.



    //.. 
    var certFile = os.Getenv("CERT")
    var keyFile = os.Getenv("KEY")
    //...
    cert, err := tls.LoadX509KeyPair(certFile, keyFile)
    if err != nil
    return err



    Follow the below link to see how to override the vars in a test env.
    In Go,how to get test environment at run time?






    share|improve this answer



























      0














      This works by defining vars for the certFile and keyFile and then overriding them in the test environment.



      //.. 
      var certFile = os.Getenv("CERT")
      var keyFile = os.Getenv("KEY")
      //...
      cert, err := tls.LoadX509KeyPair(certFile, keyFile)
      if err != nil
      return err



      Follow the below link to see how to override the vars in a test env.
      In Go,how to get test environment at run time?






      share|improve this answer

























        0












        0








        0







        This works by defining vars for the certFile and keyFile and then overriding them in the test environment.



        //.. 
        var certFile = os.Getenv("CERT")
        var keyFile = os.Getenv("KEY")
        //...
        cert, err := tls.LoadX509KeyPair(certFile, keyFile)
        if err != nil
        return err



        Follow the below link to see how to override the vars in a test env.
        In Go,how to get test environment at run time?






        share|improve this answer













        This works by defining vars for the certFile and keyFile and then overriding them in the test environment.



        //.. 
        var certFile = os.Getenv("CERT")
        var keyFile = os.Getenv("KEY")
        //...
        cert, err := tls.LoadX509KeyPair(certFile, keyFile)
        if err != nil
        return err



        Follow the below link to see how to override the vars in a test env.
        In Go,how to get test environment at run time?







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 7 at 23:07









        jazzjazz

        72




        72





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55052235%2funit-testing-tls-loadx509keypair-fails-if-no-certs-provided%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

            Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

            How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page