Testing
Instructions regarding testing new features, directed at both developers and maintainers
The GitBook based NorthstarWiki has been replaced in favour of the NorthstarDocs where this wiki has been integrated.
Check it out here: https://docs.northstar.tf/Wiki/
The same page on the new wiki should be located here: https://docs.northstar.tf/Wiki/development/testing
Testing
This section is very much still WIP. Feel free to help expand it.
Developers & Contributors
This section applies to you if you're opening a pull request to any of the Northstar repos.
Whatever your change includes, whether a bug fix or a new feature make sure to test it appropriately.
This means if your change is a bug fix, it's recommend you first make sure you can reproduce the bug. Then after making the necessary changes to fix it, test it using the same method you used to originally confirm the bug. When you're opening a pull request, make sure to mention how to reproduce the bug, so that reviewers can confirm that your chance indeed fixed the issue.
If your change is a new feature, make sure to test both that the newly added functionality performs as expected, as well as ensuring that it doesn't introduce any form of regression bugs. This means, testing anything that might be affected by your new feature.
Maintainers
This section applies to you if you're someone who's able to merge PRs in any of the repos of the Northstar GitHub org as well as when simplying performing reviews, even without being able to actually merge a PR.
When reviewing pull requests on GitHub, make sure to checkout the changes made by a PR locally and test it there. In particular, test the parts of the code that are touched by a PR.
After testing, make sure to mention the steps tested in your review.
Acquiring necessary files
FlightCore developer tools
You can use FlightCore to essentially 1-click install any pull request to NorthstarMods and NorthstarLauncher.
The tool is still being improved upon but already more than usable. Check its README for instructions:
Manually
NorthstarLauncher
Before starting, make sure you have a working and up-to-date Northstar install and you're logged into GitHub with your GitHub account (downloading files from CI only works while logged into any GitHub account)!
Once downloaded, open the zip and copy
Northstar.dll
andNorthstarLauncher.exe
to your Titanfall2 folder, overwriting the existing DLL and EXE in there.
Alternatively, compiling the PR'd code from source is also an option. For this, refer to northstarlauncher.md
NorthstarMods
Click on the source branch of the PR
Click on "Code" and then on "Download ZIP"
From there copy over all the Northstar.XXXXX
folders into your mods folder in your Titanfall2 install the same way you would manually install mods.
Tips and toolkits
(might require sv_cheats 1
)
Spawn titan/grunt:
For titan:
ent_create npc_titan; ent_fire !picker setteam 2
For grunt:
ent_create npc_soldier; ent_fire !picker setteam 2
Give free kill / build up titan/core meter
script AddPlayerScore(GetPlayerArray()[0], "KillPilot")
where GetPlayerArray()[0]
should point to the player you want to give kill/meter.
Add fake lag for network testing
net_fakelag 200
-> 200ms network lag
Joining same server multiple times with same accounts
By default duplicate accounts are blocked by server. Use -allowdupeaccounts
when starting server to allow duplicate accounts. From there you can launch multiple clients on the same account and connect them to the server.
Quickly switch map
Use map <map name>
to quickly switch map.
Example: map mp_glitch
List of maps can be found here
Speed-up/slow-down game
Use host_timescale <factor>
to speed-up or slow-down the game.
For example host_timescale 10
speeds up game by factor of 10
. Set to 1
to go back to default.
Viewing Navmeshes
Requires sv_cheats 1
and enable_debug_overlays 1
.
Use navmesh_debug_hull 1
to view navmeshes.
Last updated