Coder Social home page Coder Social logo

Comments (6)

PeterJCLaw avatar PeterJCLaw commented on August 18, 2024

Hrm, I see that this has been reported before #3107 and #3104. In my case I'm not using tornado directly -- rather it's a transitive dependency via other packages I'm using. Therefore having to modify my build process to account for the nuances of a transitive dependency really isn't something I'd want to do.

from tornado.

bdarnell avatar bdarnell commented on August 18, 2024

Similarly, modifying my build process to account for the nuances of unknown tools used by a transitive dependent isn't really something I'd want to do. Work with the vendor of your security scanner to prevent this class of false positive.

If there's some way to mark this key as testing-only and silence the warning I'd probably do so, but I don't want to remove the test files from the distribution because I find it useful to have them there and removing them would not actually improve security.

from tornado.

PeterJCLaw avatar PeterJCLaw commented on August 18, 2024

Thanks for the reply. I (personally) agree with you on security and while I can kinda see why you might want to install the test files locally for running the tests, it's much less clear to me that including them in people's importable modules is the right thing for any package to do. (What would happen if all packages did this? What are the impacts on tooling which auto-imports packages at runtime? What happens if a test runner for a consumer project auto-imports "test*" packages and tries to run tornado tests in their environment?)

I'd urge you to reconsider the inclusion by default of test files within the installed modules.

from tornado.

bdarnell avatar bdarnell commented on August 18, 2024

What would happen if all packages did this?

Virtualenvs would be a little bit bigger?

What are the impacts on tooling which auto-imports packages at runtime? What happens if a test runner for a consumer project auto-imports "test*" packages and tries to run tornado tests in their environment?

That's risky in Python in any case since importing a module can execute arbitrary code. But even setting that possibility aside, trying to import every bit of code you can find is just going to waste a lot of cpu time compiling everything. You're going to want your tools to be more selective about what code they pull in just for efficiency's sake.

from tornado.

PeterJCLaw avatar PeterJCLaw commented on August 18, 2024

What would happen if all packages did this?

Virtualenvs would be a little bit bigger?

Virtualenvs would potentially be a lot bigger after test data is accounted for.

A lot of packages also have their tests at /tests within their source tree, meaning that there's a lot of potential for name collisions and files being left behind when packages are uninstalled. I realise tornado doesn't do this, however I've seen (and helped fix) a lot of packages which do.

from tornado.

bdarnell avatar bdarnell commented on August 18, 2024

Oh I completely agree that no one should install tests outside of their namespace. And packages that have large amounts of data shouldn't ship it in their package. I'm not advocating for all packages to install their tests; I'm not even sure if I'd do it this way myself in future projects. But this is the way I've done it in this project for many years and I'd need a very good reason to go through the effort of changing.

from tornado.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.